NOISSUE Remove lingering full stop in playtime status

This commit is contained in:
Jamie Mansfield 2021-10-01 23:20:25 +01:00
parent 7cbca6ab20
commit 5bc6dd8f97
No known key found for this signature in database
GPG Key ID: 36F61598F39F67B0

View File

@ -748,7 +748,7 @@ MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new MainWindow
connect(LAUNCHER, &Launcher::globalSettingsClosed, this, &MainWindow::globalSettingsClosed);
m_statusLeft = new QLabel(tr("No instance selected"), this);
m_statusCenter = new QLabel(tr("Total playtime: 0s."), this);
m_statusCenter = new QLabel(tr("Total playtime: 0s"), this);
statusBar()->addPermanentWidget(m_statusLeft, 1);
statusBar()->addPermanentWidget(m_statusCenter, 0);