From 6a4130c9149deb029b496c81e3b874ad834c54b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Sun, 10 Oct 2021 01:25:31 +0200 Subject: [PATCH] NOISSUE re-align the status bar --- launcher/MainWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher/MainWindow.cpp b/launcher/MainWindow.cpp index 67590946..0d77ed19 100644 --- a/launcher/MainWindow.cpp +++ b/launcher/MainWindow.cpp @@ -739,7 +739,7 @@ MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new MainWindow m_statusLeft = new QLabel(tr("No instance selected"), this); m_statusCenter = new QLabel(tr("Total playtime: 0s."), this); statusBar()->addPermanentWidget(m_statusLeft, 1); - statusBar()->addPermanentWidget(m_statusCenter, 1); + statusBar()->addPermanentWidget(m_statusCenter, 0); // Add "manage accounts" button, right align QWidget *spacer = new QWidget();