--- a/src/eric7/Debugger/DebugUI.py Thu Jan 12 11:52:43 2023 +0100 +++ b/src/eric7/Debugger/DebugUI.py Thu Jan 12 13:48:00 2023 +0100 @@ -21,7 +21,6 @@ from eric7.EricWidgets import EricMessageBox from eric7.Globals import recentNameBreakpointConditions from eric7.SystemUtilities import FileSystemUtilities -from eric7.UI import Config from eric7.UI.Info import Program from eric7.UI.NotificationWidget import NotificationTypes @@ -858,7 +857,6 @@ @return the generated toolbars (list of QToolBar) """ starttb = QToolBar(self.tr("Start"), self.ui) - starttb.setIconSize(Config.ToolBarIconSize) starttb.setObjectName("StartToolbar") starttb.setToolTip(self.tr("Start")) @@ -872,7 +870,6 @@ starttb.addAction(self.debugProjectAct) debugtb = QToolBar(self.tr("Debug"), self.ui) - debugtb.setIconSize(Config.ToolBarIconSize) debugtb.setObjectName("DebugToolbar") debugtb.setToolTip(self.tr("Debug"))