Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
move results viewer icon to QGIS icons directory
  • Loading branch information
alexbruy committed Feb 16, 2017
1 parent 5fa0713 commit 3b7fdf4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions images/images.qrc
Expand Up @@ -554,6 +554,7 @@
<file>themes/default/processingModel.svg</file>
<file>themes/default/processingScript.svg</file>
<file>themes/default/processingAlgorithm.svg</file>
<file>themes/default/processingResult.svg</file>
<file>themes/default/search.svg</file>
</qresource>
<qresource prefix="/images/tips">
Expand Down
File renamed without changes
4 changes: 2 additions & 2 deletions python/plugins/processing/ProcessingPlugin.py
Expand Up @@ -102,8 +102,8 @@ def initGui(self):
self.resultsAction = self.resultsDock.toggleViewAction()
self.resultsAction.setObjectName('resultsAction')
self.resultsAction.setIcon(
QIcon(os.path.join(cmd_folder, 'images', 'results.svg')))
self.resultsAction.setText(self.tr('&Results Viewer...'))
QgsApplication.getThemeIcon("/processingResult.svg"))
self.resultsAction.setText(self.tr('&Results Viewer'))
self.iface.registerMainWindowAction(self.resultsAction, 'Ctrl+Alt+R')
self.menu.addAction(self.resultsAction)

Expand Down

0 comments on commit 3b7fdf4

Please sign in to comment.