Skip to content

Commit

Permalink
Use closed hand cursor when dragging canvas with middle mouse button
Browse files Browse the repository at this point in the history
(cherry-picked from 2dcd405)
  • Loading branch information
nyalldawson committed Jul 26, 2016
1 parent 89a4b84 commit a2f3f70
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/gui/qgsmapcanvas.cpp
Expand Up @@ -1405,6 +1405,7 @@ void QgsMapCanvas::mousePressEvent( QMouseEvent* e )
//use middle mouse button for panning, map tools won't receive any events in that case
if ( e->button() == Qt::MidButton )
{
QApplication::setOverrideCursor( Qt::ClosedHandCursor );
mCanvasProperties->panSelectorDown = true;
mCanvasProperties->rubberStartPoint = mCanvasProperties->mouseLastXY;
}
Expand Down Expand Up @@ -1443,6 +1444,7 @@ void QgsMapCanvas::mouseReleaseEvent( QMouseEvent* e )
//use middle mouse button for panning, map tools won't receive any events in that case
if ( e->button() == Qt::MidButton )
{
QApplication::restoreOverrideCursor();
mCanvasProperties->panSelectorDown = false;
panActionEnd( mCanvasProperties->mouseLastXY );
}
Expand Down

0 comments on commit a2f3f70

Please sign in to comment.