diff -r c17e67e69ef5 -r 561e97413395 Tools/TrayStarter.py --- a/Tools/TrayStarter.py Sat Apr 07 21:19:24 2012 +0200 +++ b/Tools/TrayStarter.py Sun Apr 08 12:45:44 2012 +0200 @@ -98,6 +98,8 @@ self.trUtf8("SQL Browser"), self.__startSqlBrowser) self.__menu.addSeparator() + self.__menu.addAction(UI.PixmapCache.getIcon("ericSnap.png"), + self.trUtf8("Snapshot"), self.__startSnapshot) self.__menu.addAction(UI.PixmapCache.getIcon("iconEditor.png"), self.trUtf8("Icon Editor"), self.__startIconEditor) self.__menu.addSeparator() @@ -119,7 +121,7 @@ self.__menu.addSeparator() self.__menu.addAction(UI.PixmapCache.getIcon("configure.png"), - self.trUtf8('Preferences (tray starter)'), self.__showPreferences) + self.trUtf8('Configure Tray Starter'), self.__showPreferences) self.__menu.addSeparator() # recent files @@ -313,6 +315,13 @@ self.__startProc("eric5_iconeditor.py", "--config={0}".format( Utilities.getConfigDir())) + def __startSnapshot(self): + """ + Private slot to start the eric5 snapshot dialog. + """ + self.__startProc("eric5_snap.py", "--config={0}".format( + Utilities.getConfigDir())) + def __startQRegExp(self): """ Private slot to start the eric5 QRegExp editor dialog.