diff -r 67fa9b25183f -r 6fa2418f010c Tools/TrayStarter.py --- a/Tools/TrayStarter.py Sun Jan 17 12:18:55 2016 +0100 +++ b/Tools/TrayStarter.py Sun Jan 17 12:57:23 2016 +0100 @@ -104,9 +104,6 @@ self.__menu.addAction( UI.PixmapCache.getIcon("unittest.png"), self.tr("Unittest"), self.__startUnittest) - self.__menu.addAction( - UI.PixmapCache.getIcon("ericWeb.png"), - self.tr("eric6 Web Browser"), self.__startHelpViewer) self.__menu.addSeparator() self.__menu.addAction( @@ -144,12 +141,20 @@ self.__menu.addAction( UI.PixmapCache.getIcon("configure.png"), self.tr('Preferences'), self.__startPreferences) + self.__menu.addSeparator() + self.__menu.addAction( UI.PixmapCache.getIcon("erict.png"), self.tr("eric6 IDE"), self.__startEric) self.__menu.addAction( UI.PixmapCache.getIcon("editor.png"), self.tr("eric6 Mini Editor"), self.__startMiniEditor) + self.__menu.addAction( + UI.PixmapCache.getIcon("hexEditor.png"), + self.tr("eric6 Hex Editor"), self.__startHexEditor) + self.__menu.addAction( + UI.PixmapCache.getIcon("ericWeb.png"), + self.tr("eric6 Web Browser"), self.__startHelpViewer) self.__menu.addSeparator() self.__menu.addAction( @@ -362,6 +367,12 @@ Private slot to start the eric6 Python re editor dialog. """ self.__startProc("eric6_re.py") + + def __startHexEditor(self): + """ + Private slot to start the eric6 hex editor dialog. + """ + self.__startProc("eric6_hexeditor.py") def __showRecentProjectsMenu(self): """