Skip to content

Commit

Permalink
Merge pull request #1125 from ahuarte47/Issue_9454
Browse files Browse the repository at this point in the history
Fix bug #9454: MapNodeTool unnecessarily refresh the map
  • Loading branch information
3nids committed Feb 4, 2014
2 parents 10947f7 + b6f2a92 commit a4c2148
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/app/nodetool/qgsmaptoolnodetool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -741,7 +741,6 @@ void QgsMapToolNodeTool::keyPressEvent( QKeyEvent* e )

mSelectedFeature->deselectAllVertexes();
safeSelectVertex( firstSelectedIndex - 1 );
mCanvas->refresh();
}
else if ( mSelectedFeature && ( e->key() == Qt::Key_Greater || e->key() == Qt::Key_Period ) )
{
Expand All @@ -751,7 +750,6 @@ void QgsMapToolNodeTool::keyPressEvent( QKeyEvent* e )

mSelectedFeature->deselectAllVertexes();
safeSelectVertex( firstSelectedIndex + 1 );
mCanvas->refresh();
}
}

Expand Down

0 comments on commit a4c2148

Please sign in to comment.