Increase the icon size of outline toolbar

This commit is contained in:
Veronica Berglyd Olsen
2024-04-14 16:36:21 +02:00
parent 6dc3e29535
commit 99ec268dd9
+2 -5
View File
@@ -209,11 +209,8 @@ class GuiOutlineToolBar(QToolBar):
logger.debug("Create: GuiOutlineToolBar")
iSz = SHARED.theme.baseIconSize
mPx = CONFIG.pxInt(12)
self.setMovable(False)
self.setIconSize(iSz)
self.setIconSize(1.4*SHARED.theme.baseIconSize)
self.setContentsMargins(0, 0, 0, 0)
stretch = QWidget(self)
@@ -221,7 +218,7 @@ class GuiOutlineToolBar(QToolBar):
# Novel Selector
self.novelLabel = QLabel(self.tr("Outline of"), self)
self.novelLabel.setContentsMargins(0, 0, mPx, 0)
self.novelLabel.setContentsMargins(0, 0, CONFIG.pxInt(12), 0)
self.novelValue = NovelSelector(self)
self.novelValue.setIncludeAll(True)