Skip to content

Commit

Permalink
[processing] followup: 9c40032 - restore ellipses in menu actions
Browse files Browse the repository at this point in the history
  • Loading branch information
slarosa committed Jan 23, 2018
1 parent 9c40032 commit eb8a810
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/processing/ProcessingPlugin.py
Expand Up @@ -198,7 +198,7 @@ def initGui(self):

self.modelerAction = QAction(
QgsApplication.getThemeIcon("/processingModel.svg"),
self.tr('Graphical &Modeler'), self.iface.mainWindow())
self.tr('Graphical &Modeler...'), self.iface.mainWindow())
self.modelerAction.setObjectName('modelerAction')
self.modelerAction.triggered.connect(self.openModeler)
self.iface.registerMainWindowAction(self.modelerAction, 'Ctrl+Alt+M')
Expand All @@ -207,7 +207,7 @@ def initGui(self):

self.historyAction = QAction(
QIcon(os.path.join(cmd_folder, 'images', 'history.svg')),
self.tr('&History'), self.iface.mainWindow())
self.tr('&History...'), self.iface.mainWindow())
self.historyAction.setObjectName('historyAction')
self.historyAction.triggered.connect(self.openHistory)
self.iface.registerMainWindowAction(self.historyAction, 'Ctrl+Alt+H')
Expand Down

0 comments on commit eb8a810

Please sign in to comment.