838 self.debugViewer = DebugViewer(debugServer, True, self.viewmanager) |
838 self.debugViewer = DebugViewer(debugServer, True, self.viewmanager) |
839 self.rToolbox.addItem(self.debugViewer, |
839 self.rToolbox.addItem(self.debugViewer, |
840 UI.PixmapCache.getIcon("debugViewer.png"), |
840 UI.PixmapCache.getIcon("debugViewer.png"), |
841 self.tr("Debug-Viewer")) |
841 self.tr("Debug-Viewer")) |
842 |
842 |
|
843 # Create the conda package manager |
|
844 logging.debug("Creating Conda Package Manager...") |
|
845 from CondaInterface.CondaPackagesWidget import CondaPackagesWidget |
|
846 self.condaWidget = CondaPackagesWidget(self.condaInterface) |
|
847 self.rToolbox.addItem(self.condaWidget, |
|
848 UI.PixmapCache.getIcon("miniconda.png"), |
|
849 self.tr("Conda")) |
|
850 |
843 if Preferences.getUI("ShowCooperation"): |
851 if Preferences.getUI("ShowCooperation"): |
844 # Create the chat part of the user interface |
852 # Create the chat part of the user interface |
845 logging.debug("Creating Chat Widget...") |
853 logging.debug("Creating Chat Widget...") |
846 from Cooperation.ChatWidget import ChatWidget |
854 from Cooperation.ChatWidget import ChatWidget |
847 self.cooperation = ChatWidget(self) |
855 self.cooperation = ChatWidget(self) |
982 self.tr("Debug-Viewer")) |
990 self.tr("Debug-Viewer")) |
983 |
991 |
984 # Create the conda package manager |
992 # Create the conda package manager |
985 logging.debug("Creating Conda Package Manager...") |
993 logging.debug("Creating Conda Package Manager...") |
986 from CondaInterface.CondaPackagesWidget import CondaPackagesWidget |
994 from CondaInterface.CondaPackagesWidget import CondaPackagesWidget |
987 self.condaWidget = CondaPackagesWidget() |
995 self.condaWidget = CondaPackagesWidget(self.condaInterface) |
988 self.rightSidebar.addTab( |
996 self.rightSidebar.addTab( |
989 self.condaWidget, UI.PixmapCache.getIcon("miniconda.png"), |
997 self.condaWidget, UI.PixmapCache.getIcon("miniconda.png"), |
990 self.tr("Conda")) |
998 self.tr("Conda")) |
991 |
999 |
992 if Preferences.getUI("ShowCooperation"): |
1000 if Preferences.getUI("ShowCooperation"): |