Tools/TrayStarter.py

changeset 4673
6fa2418f010c
parent 4631
5c1a96925da4
child 4986
248b5a87158d
--- 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):
         """

eric ide

mercurial