Some further text, icon and column size tweaks.

This commit is contained in:
Veronica K. B. Olsen
2020-05-30 21:12:51 +02:00
parent 59bdc375a6
commit 99d361ad9a
4 changed files with 21 additions and 16 deletions
+2 -2
View File
@@ -65,7 +65,7 @@ class GuiMainStatus(QStatusBar):
colTrue = QColor(*self.theTheme.statUnsaved)
colFalse = QColor(*self.theTheme.statSaved)
iPx = int(round(self.theTheme.baseIconSize))
iPx = self.theTheme.textIconSize
# Permanent Widgets
# =================
@@ -73,7 +73,7 @@ class GuiMainStatus(QStatusBar):
## The Spell Checker Language
self.langIcon = QLabel("")
self.langText = QLabel("None")
self.langIcon.setPixmap(self.theTheme.getPixmap("status_lang" ,(iPx, iPx)))
self.langIcon.setPixmap(self.theTheme.getPixmap("status_lang", (iPx, iPx)))
self.langIcon.setContentsMargins(0, 0, 0, 0)
self.langText.setContentsMargins(0, 0, 8, 0)
self.addPermanentWidget(self.langIcon)