Skip to content

Commit

Permalink
fix #2675
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@13355 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Apr 23, 2010
1 parent 8e1b2aa commit 9bc24cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgsmaptoolnodetool.cpp
Expand Up @@ -864,7 +864,7 @@ void QgsMapToolNodeTool::keyReleaseEvent( QKeyEvent* e )
mCtrl = false;
return;
}
if ( e->key() == Qt::Key_Delete )
if ( mSelectionFeature && e->key() == Qt::Key_Delete )
{
mChangingGeometry = true;
mSelectionFeature->deleteSelectedVertexes();
Expand Down

0 comments on commit 9bc24cb

Please sign in to comment.