Skip to content

Commit 7039d32

Browse files
author
jef
committedDec 1, 2007
followup to r7702 - missed a button
git-svn-id: http://svn.osgeo.org/qgis/trunk@7703 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 964b3a9 commit 7039d32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/app/qgisapp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4769,7 +4769,7 @@ void QgisApp::activateDeactivateLayerRelatedActions(QgsMapLayer* layer)
47694769
mActionDeleteVertex->setEnabled(false);
47704770
mActionAddRing->setEnabled(false);
47714771
mActionAddIsland->setEnabled(false);
4772-
if(dprovider->capabilities() & QgsVectorDataProvider::ChangeGeometries)
4772+
if(vlayer->isEditable() && dprovider->capabilities() & QgsVectorDataProvider::ChangeGeometries)
47734773
{
47744774
mActionMoveVertex->setEnabled(true);
47754775
}

0 commit comments

Comments
 (0)
Please sign in to comment.