diff options
| author | 2018-09-08 19:10:50 +0800 | |
|---|---|---|
| committer | 2018-09-08 19:10:50 +0800 | |
| commit | 4048b54ef72b869fe380381f02107a133a541bbf (patch) | |
| tree | 3a814be53faaec595d48b2ac4cbddc4432d93667 /src | |
| parent | Merge pull request #1246 from degasus/instanced_rendering (diff) | |
| download | yuzu-4048b54ef72b869fe380381f02107a133a541bbf.tar.gz yuzu-4048b54ef72b869fe380381f02107a133a541bbf.tar.xz yuzu-4048b54ef72b869fe380381f02107a133a541bbf.zip | |
yuzu: fix title bar display
Previously the version number got hidden after starting a game.
Diffstat (limited to 'src')
| -rw-r--r-- | src/yuzu/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 2cd282a51..811e7cd3f 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp | |||
| @@ -608,7 +608,7 @@ void GMainWindow::BootGame(const QString& filename) { | |||
| 608 | } | 608 | } |
| 609 | 609 | ||
| 610 | setWindowTitle(QString("yuzu %1| %4 | %2-%3") | 610 | setWindowTitle(QString("yuzu %1| %4 | %2-%3") |
| 611 | .arg(Common::g_build_name, Common::g_scm_branch, Common::g_scm_desc, | 611 | .arg(Common::g_build_fullname, Common::g_scm_branch, Common::g_scm_desc, |
| 612 | QString::fromStdString(title_name))); | 612 | QString::fromStdString(title_name))); |
| 613 | 613 | ||
| 614 | render_window->show(); | 614 | render_window->show(); |
| @@ -643,7 +643,7 @@ void GMainWindow::ShutdownGame() { | |||
| 643 | game_list->show(); | 643 | game_list->show(); |
| 644 | game_list->setFilterFocus(); | 644 | game_list->setFilterFocus(); |
| 645 | setWindowTitle(QString("yuzu %1| %2-%3") | 645 | setWindowTitle(QString("yuzu %1| %2-%3") |
| 646 | .arg(Common::g_build_name, Common::g_scm_branch, Common::g_scm_desc)); | 646 | .arg(Common::g_build_fullname, Common::g_scm_branch, Common::g_scm_desc)); |
| 647 | 647 | ||
| 648 | // Disable status bar updates | 648 | // Disable status bar updates |
| 649 | status_bar_update_timer.stop(); | 649 | status_bar_update_timer.stop(); |