@@ -2511,7 +2511,7 @@ void QgisApp::setTheme( const QString& theThemeName )
2511
2511
mActionCopyFeatures ->setIcon ( QgsApplication::getThemeIcon ( " /mActionEditCopy.svg" ) );
2512
2512
mActionPasteFeatures ->setIcon ( QgsApplication::getThemeIcon ( " /mActionEditPaste.svg" ) );
2513
2513
mActionAddFeature ->setIcon ( QgsApplication::getThemeIcon ( " /mActionCapturePoint.svg" ) );
2514
- mActionMoveFeature ->setIcon ( QgsApplication::getThemeIcon ( " /mActionMoveFeature .svg" ) );
2514
+ mActionMoveFeature ->setIcon ( QgsApplication::getThemeIcon ( " /mActionMoveFeaturePoint .svg" ) );
2515
2515
mActionRotateFeature ->setIcon ( QgsApplication::getThemeIcon ( " /mActionRotateFeature.png" ) );
2516
2516
mActionReshapeFeatures ->setIcon ( QgsApplication::getThemeIcon ( " /mActionReshape.png" ) );
2517
2517
mActionSplitFeatures ->setIcon ( QgsApplication::getThemeIcon ( " /mActionSplitFeatures.svg" ) );
@@ -10553,6 +10553,7 @@ void QgisApp::activateDeactivateLayerRelatedActions( QgsMapLayer* layer )
10553
10553
if ( vlayer->geometryType () == QGis::Point )
10554
10554
{
10555
10555
mActionAddFeature ->setIcon ( QgsApplication::getThemeIcon ( " /mActionCapturePoint.svg" ) );
10556
+ mActionMoveFeature ->setIcon ( QgsApplication::getThemeIcon ( " /mActionMoveFeaturePoint.svg" ) );
10556
10557
10557
10558
mActionAddRing ->setEnabled ( false );
10558
10559
mActionFillRing ->setEnabled ( false );
@@ -10580,6 +10581,7 @@ void QgisApp::activateDeactivateLayerRelatedActions( QgsMapLayer* layer )
10580
10581
else if ( vlayer->geometryType () == QGis::Line )
10581
10582
{
10582
10583
mActionAddFeature ->setIcon ( QgsApplication::getThemeIcon ( " /mActionCaptureLine.svg" ) );
10584
+ mActionMoveFeature ->setIcon ( QgsApplication::getThemeIcon ( " /mActionMoveFeatureLine.svg" ) );
10583
10585
10584
10586
mActionReshapeFeatures ->setEnabled ( isEditable && canChangeGeometry );
10585
10587
mActionSplitFeatures ->setEnabled ( isEditable && canAddFeatures );
@@ -10594,6 +10596,7 @@ void QgisApp::activateDeactivateLayerRelatedActions( QgsMapLayer* layer )
10594
10596
else if ( vlayer->geometryType () == QGis::Polygon )
10595
10597
{
10596
10598
mActionAddFeature ->setIcon ( QgsApplication::getThemeIcon ( " /mActionCapturePolygon.svg" ) );
10599
+ mActionMoveFeature ->setIcon ( QgsApplication::getThemeIcon ( " /mActionMoveFeature.svg" ) );
10597
10600
10598
10601
mActionAddRing ->setEnabled ( isEditable && canChangeGeometry );
10599
10602
mActionFillRing ->setEnabled ( isEditable && canChangeGeometry );
0 commit comments