Skip to content

Commit

Permalink
Fix for ticket #1172
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@9018 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
gjm committed Aug 7, 2008
1 parent f736f02 commit c2d3a88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/qgsmapoverviewcanvas.cpp
Expand Up @@ -181,7 +181,7 @@ void QgsMapOverviewCanvas::mouseReleaseEvent(QMouseEvent * e)
// if (mPanningWidget->isHidden())
// return;

if ((e->buttons() & Qt::LeftButton) == Qt::LeftButton)
if (e->button() == Qt::LeftButton)
{
// set new extent
const QgsMapToPixel* cXf = mMapRenderer->coordXForm();
Expand Down

0 comments on commit c2d3a88

Please sign in to comment.