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. |