--- a/eric7/Tools/TrayStarter.py Thu Sep 16 19:31:00 2021 +0200 +++ b/eric7/Tools/TrayStarter.py Fri Sep 17 19:04:07 2021 +0200 @@ -142,6 +142,11 @@ self.__menu.addSeparator() self.__menu.addAction( + UI.PixmapCache.getIcon("virtualenv"), + self.tr("Virtual Environments"), self.__startVirtualenvManager) + self.__menu.addSeparator() + + self.__menu.addAction( UI.PixmapCache.getIcon("configure"), self.tr('Preferences'), self.__startPreferences) self.__menu.addSeparator() @@ -324,6 +329,12 @@ """ self.__startProc("eric7_pluginrepository.py") + def __startVirtualenvManager(self): + """ + Private slot to start the eric virtual environments manager window. + """ + self.__startProc("eric7_virtualenv.py") + def __startWebBrowser(self): """ Private slot to start the eric web browser.