From c9c5a2a9d824acc10fdd96b0972223450c47c6dd Mon Sep 17 00:00:00 2001 From: Pavel Sanda Date: Wed, 11 Oct 2023 21:07:12 +0200 Subject: [PATCH] Add space padding around word count forgotten part of (#12625). Again from Daniel. --- src/frontends/qt/GuiView.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/frontends/qt/GuiView.cpp b/src/frontends/qt/GuiView.cpp index 17ae3f00ac..47f8230d02 100644 --- a/src/frontends/qt/GuiView.cpp +++ b/src/frontends/qt/GuiView.cpp @@ -651,6 +651,7 @@ GuiView::GuiView(int id) stat_counts_ = new GuiClickableLabel(statusBar()); stat_counts_->setAlignment(Qt::AlignCenter); + stat_counts_->setStyleSheet("padding-left: 5px; padding-right: 5px;"); stat_counts_->hide(); statusBar()->addPermanentWidget(stat_counts_); -- 2.39.5