Skip to content

Commit d32d71f

Browse files
author
borysiasty
committed
Fix for ticket #1394 (Theme support for toolbar icons not completed)
git-svn-id: http://svn.osgeo.org/qgis/trunk@9724 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent ae073e9 commit d32d71f

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/app/qgisapp.cpp

+14
Original file line numberDiff line numberDiff line change
@@ -1438,6 +1438,7 @@ void QgisApp::setTheme( QString theThemeName )
14381438
mActionHideAllLayers->setIcon( getThemeIcon( "/mActionHideAllLayers.png" ) );
14391439
mActionShowAllLayers->setIcon( getThemeIcon( "/mActionShowAllLayers.png" ) );
14401440
mActionRemoveAllFromOverview->setIcon( getThemeIcon( "/mActionRemoveAllFromOverview.png" ) );
1441+
mActionToggleFullScreen->setIcon( getThemeIcon( "/mActionToggleFullScreen.png" ) );
14411442
mActionProjectProperties->setIcon( getThemeIcon( "/mActionProjectProperties.png" ) );
14421443
mActionManagePlugins->setIcon( getThemeIcon( "/mActionShowPluginManager.png" ) );
14431444
mActionCheckQgisVersion->setIcon( getThemeIcon( "/mActionCheckQgisVersion.png" ) );
@@ -1446,9 +1447,21 @@ void QgisApp::setTheme( QString theThemeName )
14461447
mActionQgisHomePage->setIcon( getThemeIcon( "/mActionQgisHomePage.png" ) );
14471448
mActionAbout->setIcon( getThemeIcon( "/mActionHelpAbout.png" ) );
14481449
mActionDraw->setIcon( getThemeIcon( "/mActionDraw.png" ) );
1450+
mActionToggleEditing->setIcon( getThemeIcon( "/mActionToggleEditing.png" ) );
1451+
mActionCutFeatures->setIcon( getThemeIcon( "/mActionEditCut.png" ) );
1452+
mActionCopyFeatures->setIcon( getThemeIcon( "/mActionEditCopy.png" ) );
1453+
mActionPasteFeatures->setIcon( getThemeIcon( "/mActionEditPaste.png" ) );
14491454
mActionCapturePoint->setIcon( getThemeIcon( "/mActionCapturePoint.png" ) );
14501455
mActionCaptureLine->setIcon( getThemeIcon( "/mActionCaptureLine.png" ) );
14511456
mActionCapturePolygon->setIcon( getThemeIcon( "/mActionCapturePolygon.png" ) );
1457+
mActionMoveFeature->setIcon( getThemeIcon( "/mActionMoveFeature.png" ) );
1458+
mActionSplitFeatures->setIcon( getThemeIcon( "/mActionSplitFeatures.png" ) );
1459+
mActionDeleteSelected->setIcon( getThemeIcon( "/mActionDeleteSelected.png" ) );
1460+
mActionAddVertex->setIcon( getThemeIcon( "/mActionAddVertex.png" ) );
1461+
mActionMoveVertex->setIcon( getThemeIcon( "/mActionMoveVertex.png" ) );
1462+
mActionDeleteVertex->setIcon( getThemeIcon( "/mActionDeleteVertex.png" ) );
1463+
mActionAddRing->setIcon( getThemeIcon( "/mActionAddRing.png" ) );
1464+
mActionAddIsland->setIcon( getThemeIcon( "/mActionAddIsland.png" ) );
14521465
mActionZoomIn->setIcon( getThemeIcon( "/mActionZoomIn.png" ) );
14531466
mActionZoomOut->setIcon( getThemeIcon( "/mActionZoomOut.png" ) );
14541467
mActionZoomFullExtent->setIcon( getThemeIcon( "/mActionZoomFullExtent.png" ) );
@@ -1461,6 +1474,7 @@ void QgisApp::setTheme( QString theThemeName )
14611474
mActionOpenTable->setIcon( getThemeIcon( "/mActionOpenTable.png" ) );
14621475
mActionMeasure->setIcon( getThemeIcon( "/mActionMeasure.png" ) );
14631476
mActionMeasureArea->setIcon( getThemeIcon( "/mActionMeasureArea.png" ) );
1477+
mActionMapTips->setIcon( getThemeIcon( "/mActionMapTips.png" ) );
14641478
mActionShowBookmarks->setIcon( getThemeIcon( "/mActionShowBookmarks.png" ) );
14651479
mActionNewBookmark->setIcon( getThemeIcon( "/mActionNewBookmark.png" ) );
14661480
mActionCustomProjection->setIcon( getThemeIcon( "/mActionCustomProjection.png" ) );

0 commit comments

Comments
 (0)