src/eric7/QScintilla/ShellWindow.py

branch
server
changeset 10766
d35d6f96c24b
parent 10692
9becf9ca115c
child 10933
95a15b70f7bb
equal deleted inserted replaced
10765:b0632e55ec9a 10766:d35d6f96c24b
1453 def __showStartMenu(self): 1453 def __showStartMenu(self):
1454 """ 1454 """
1455 Private slot to prepare the language menu. 1455 Private slot to prepare the language menu.
1456 """ 1456 """
1457 self.__startMenu.clear() 1457 self.__startMenu.clear()
1458 for venvName in sorted(self.virtualenvManager.getVirtualenvNames()): 1458 for venvName in sorted(
1459 self.virtualenvManager.getVirtualenvNames(noServer=True)
1460 ):
1459 self.__startMenu.addAction(venvName) 1461 self.__startMenu.addAction(venvName)
1460 1462
1461 def __startShell(self, action): 1463 def __startShell(self, action):
1462 """ 1464 """
1463 Private slot to start a shell according to the action triggered. 1465 Private slot to start a shell according to the action triggered.

eric ide

mercurial