--- a/Tools/TrayStarter.py Sun Apr 09 16:52:55 2017 +0200 +++ b/Tools/TrayStarter.py Sat May 06 13:43:21 2017 +0200 @@ -163,6 +163,9 @@ self.__menu.addAction( UI.PixmapCache.getIcon("ericWeb.png"), self.tr("eric6 Web Browser"), self.__startHelpViewer) + self.__menu.addAction( + UI.PixmapCache.getIcon("shell.png"), + self.tr("eric6 Shell Window"), self.__startShell) self.__menu.addSeparator() self.__menu.addAction( @@ -384,6 +387,12 @@ Private slot to start the eric6 hex editor dialog. """ self.__startProc("eric6_hexeditor.py") + + def __startShell(self): + """ + Private slot to start the eric6 Shell window. + """ + self.__startProc("eric6_shell.py") def __showRecentProjectsMenu(self): """