diff options
author | Jamie Mansfield <jmansfield@cadixdev.org> | 2021-10-01 23:20:25 +0100 |
---|---|---|
committer | Jamie Mansfield <jmansfield@cadixdev.org> | 2021-10-24 00:11:09 +0100 |
commit | 5bc6dd8f970249c8279d6302f8df56910c599514 (patch) | |
tree | f88a95f36d2c6a244924755e293f920b2ad58515 /launcher | |
parent | 7cbca6ab20f34bbb9522f002f2f1cfa4eca1da18 (diff) | |
download | PrismLauncher-5bc6dd8f970249c8279d6302f8df56910c599514.tar.gz PrismLauncher-5bc6dd8f970249c8279d6302f8df56910c599514.tar.bz2 PrismLauncher-5bc6dd8f970249c8279d6302f8df56910c599514.zip |
NOISSUE Remove lingering full stop in playtime status
Diffstat (limited to 'launcher')
-rw-r--r-- | launcher/MainWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/MainWindow.cpp b/launcher/MainWindow.cpp index d394238a..33d9c7f4 100644 --- a/launcher/MainWindow.cpp +++ b/launcher/MainWindow.cpp @@ -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); |