Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix r10069
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@10071 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Jan 31, 2009
1 parent 7f8da34 commit 18a38e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgisapp.cpp
Expand Up @@ -5017,7 +5017,7 @@ void QgisApp::activateDeactivateLayerRelatedActions( QgsMapLayer* layer )
if ( vlayer->isEditable() && dprovider->capabilities() & QgsVectorDataProvider::ChangeGeometries )
{
//don't enable vertex move for single point
if ( QGis::wkbType2d( vlayer->wkbType() ) != QGis::WKBPoint )
if ( vlayer->wkbType() != QGis::WKBPoint && vlayer->wkbType() != QGis::WKBPoint25D )
{
mActionMoveVertex->setEnabled( true );
}
Expand Down

0 comments on commit 18a38e3

Please sign in to comment.