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/qgis@13355 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Apr 23, 2010
1 parent cc06ed4 commit ddaf58e
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 ddaf58e

Please sign in to comment.