89 Private method to populate and set the virtual environment combo box. |
89 Private method to populate and set the virtual environment combo box. |
90 """ |
90 """ |
91 self.venvComboBox.clear() |
91 self.venvComboBox.clear() |
92 self.venvComboBox.addItems( |
92 self.venvComboBox.addItems( |
93 [""] + |
93 [""] + |
94 sorted(self.__virtualenvManager.getVirtualenvNamesForVariant(3)) |
94 sorted(self.__virtualenvManager.getVirtualenvNames()) |
95 ) |
95 ) |
96 |
96 |
97 # set initial value |
97 # set initial value |
98 venvName = Preferences.getDebugger("Python3VirtualEnv") |
98 venvName = Preferences.getDebugger("Python3VirtualEnv") |
99 if venvName: |
99 if venvName: |