eric7/UI/UserInterface.py

branch
eric7
changeset 8588
84dfb28716e2
parent 8587
78971b458d25
child 8593
1d66b6af60ed
diff -r 78971b458d25 -r 84dfb28716e2 eric7/UI/UserInterface.py
--- a/eric7/UI/UserInterface.py	Thu Sep 09 19:22:12 2021 +0200
+++ b/eric7/UI/UserInterface.py	Fri Sep 10 19:45:14 2021 +0200
@@ -1120,7 +1120,6 @@
         
         logging.debug("Creating Sidebars Layout...")
         
-        # TODO: create icon for biggest icon bar size (96px)
         # Create the left sidebar
         self.leftSidebar = EricSideBar(EricSideBarSide.WEST,
                                        Preferences.getUI("IconBarSize"))
@@ -1142,30 +1141,30 @@
         
         self.leftSidebar.addTab(
             self.projectBrowser,
-            UI.PixmapCache.getIcon("sbProjectViewer48"),
+            UI.PixmapCache.getIcon("sbProjectViewer96"),
             self.tr("Project-Viewer"))
 
         self.leftSidebar.addTab(
             self.multiProjectBrowser,
-            UI.PixmapCache.getIcon("sbMultiProjectViewer48"),
+            UI.PixmapCache.getIcon("sbMultiProjectViewer96"),
             self.tr("Multiproject-Viewer"))
 
         if self.templateViewer:
             self.leftSidebar.addTab(
                 self.templateViewer,
-                UI.PixmapCache.getIcon("sbTemplateViewer48"),
+                UI.PixmapCache.getIcon("sbTemplateViewer96"),
                 self.tr("Template-Viewer"))
 
         if self.browser:
             self.leftSidebar.addTab(
                 self.browser,
-                UI.PixmapCache.getIcon("sbFileBrowser48"),
+                UI.PixmapCache.getIcon("sbFileBrowser96"),
                 self.tr("File-Browser"))
         
         if self.symbolsViewer:
             self.leftSidebar.addTab(
                 self.symbolsViewer,
-                UI.PixmapCache.getIcon("sbSymbolsViewer48"),
+                UI.PixmapCache.getIcon("sbSymbolsViewer96"),
                 self.tr("Symbols"))
 
         ####################################################
@@ -1175,37 +1174,37 @@
         if self.codeDocumentationViewer:
             self.rightSidebar.addTab(
                 self.codeDocumentationViewer,
-                UI.PixmapCache.getIcon("sbCodeDocuViewer48"),
+                UI.PixmapCache.getIcon("sbCodeDocuViewer96"),
                 self.tr("Code Documentation Viewer"))
         
         self.rightSidebar.addTab(
-            self.debugViewer, UI.PixmapCache.getIcon("sbDebugViewer48"),
+            self.debugViewer, UI.PixmapCache.getIcon("sbDebugViewer96"),
             self.tr("Debug-Viewer"))
 
         if self.pipWidget:
             self.rightSidebar.addTab(
-                self.pipWidget, UI.PixmapCache.getIcon("sbPyPI48"),
+                self.pipWidget, UI.PixmapCache.getIcon("sbPyPI96"),
                 self.tr("PyPI"))
         
         if self.condaWidget:
             self.rightSidebar.addTab(
-                self.condaWidget, UI.PixmapCache.getIcon("sbMiniconda48"),
+                self.condaWidget, UI.PixmapCache.getIcon("sbMiniconda96"),
                 self.tr("Conda"))
 
         if self.cooperation:
             self.rightSidebar.addTab(
-                self.cooperation, UI.PixmapCache.getIcon("sbCooperation48"),
+                self.cooperation, UI.PixmapCache.getIcon("sbCooperation96"),
                 self.tr("Cooperation"))
         
         if self.irc:
             self.rightSidebar.addTab(
-                self.irc, UI.PixmapCache.getIcon("sbIrc48"),
+                self.irc, UI.PixmapCache.getIcon("sbIrc96"),
                 self.tr("IRC"))
         
         if self.microPythonWidget:
             self.rightSidebar.addTab(
                 self.microPythonWidget,
-                UI.PixmapCache.getIcon("sbMicroPython48"),
+                UI.PixmapCache.getIcon("sbMicroPython96"),
                 self.tr("MicroPython"))
         
         ####################################################
@@ -1213,16 +1212,16 @@
         ####################################################
         
         self.bottomSidebar.addTab(self.taskViewer,
-                                  UI.PixmapCache.getIcon("sbTasksViewer48"),
+                                  UI.PixmapCache.getIcon("sbTasksViewer96"),
                                   self.tr("Task-Viewer"))
 
         self.bottomSidebar.addTab(self.logViewer,
-                                  UI.PixmapCache.getIcon("sbLogViewer48"),
+                                  UI.PixmapCache.getIcon("sbLogViewer96"),
                                   self.tr("Log-Viewer"))
         
         if self.numbersViewer:
             self.bottomSidebar.addTab(self.numbersViewer,
-                                      UI.PixmapCache.getIcon("sbNumbers48"),
+                                      UI.PixmapCache.getIcon("sbNumbers96"),
                                       self.tr("Numbers"))
         
         ####################################################
@@ -1237,7 +1236,7 @@
         else:
             self.__shellParent = self.bottomSidebar
         self.__shellParent.insertTab(0, self.shellAssembly,
-                                     UI.PixmapCache.getIcon("sbShell48"),
+                                     UI.PixmapCache.getIcon("sbShell96"),
                                      self.tr("Shell"))
         
         ####################################################

eric ide

mercurial