diff options
| author | AL <26797547+Al12rs@users.noreply.github.com> | 2020-06-24 15:50:55 +0200 |
|---|---|---|
| committer | AL <26797547+Al12rs@users.noreply.github.com> | 2020-06-24 15:50:55 +0200 |
| commit | e4372b45709a0f79491019c21252869f719092cd (patch) | |
| tree | 465e4b625cf984c4bc9ada32285c2dc6f5c557b8 /src | |
| parent | 4ae95e21ad77256cb9fe2942a302bbcdda04ef30 (diff) | |
Add a dash between the managed game and "Mod Organizer" to distinguish app name.
Diffstat (limited to 'src')
| -rw-r--r-- | src/mainwindow.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 91c906a1..b2907db9 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -717,7 +717,8 @@ MainWindow::~MainWindow() void MainWindow::updateWindowTitle(const APIUserAccount& user) { - QString title = QString("%1 Mod Organizer v%2").arg( + //"\xe2\x80\x93" is an "em dash", a longer "-" + QString title = QString("%1 \xe2\x80\x93 Mod Organizer v%2").arg( m_OrganizerCore.managedGame()->gameName(), m_OrganizerCore.getVersion().displayString(3)); |
