diff --git a/nw/gui/elements/docdetails.py b/nw/gui/elements/docdetails.py index f2ed1739..84418802 100644 --- a/nw/gui/elements/docdetails.py +++ b/nw/gui/elements/docdetails.py @@ -62,7 +62,7 @@ class GuiDocDetails(QFrame): self.expCross = self.theTheme.getPixmap("cross", (self.iPx, self.iPx)) self.fntLabel = QFont() - self.fntLabel.setPointSize(10) + self.fntLabel.setBold(True) self.fntLabel.setPointSizeF(self.pS) self.fntFixed = QFont() diff --git a/nw/gui/statusbar.py b/nw/gui/statusbar.py index 5b21bbdb..5fc4c873 100644 --- a/nw/gui/statusbar.py +++ b/nw/gui/statusbar.py @@ -59,7 +59,7 @@ class GuiMainStatus(QStatusBar): self.fntFixed = QFont() self.fntFixed.setFamily("Monospace") - self.fntFixed.setPointSizeF(self.theTheme.fontPointSize) + self.fntFixed.setPointSizeF(0.95*self.theTheme.fontPointSize) colNone = QColor(*self.theTheme.statNone) colTrue = QColor(*self.theTheme.statUnsaved)