Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Use closed hand cursor when dragging canvas with middle mouse button
  • Loading branch information
nyalldawson committed Jul 22, 2016
1 parent d56ca40 commit 2dcd405
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/gui/qgsmapcanvas.cpp
Expand Up @@ -1439,6 +1439,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 @@ -1477,6 +1478,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 2dcd405

Please sign in to comment.