diff options
author | bunnei <bunneidev@gmail.com> | 2021-10-03 00:27:08 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-03 00:27:08 -0700 |
commit | e209fff3740a34f0fa9d5ef03d207eb86b401574 (patch) | |
tree | cd49095264fbec66ed36c18455718ea994bc8d73 /src | |
parent | 4a77ceb1510f3c97abcf739a893a4d0f2f5bba6e (diff) | |
parent | 596323f89f8b127181cebf65ddf4bbc02792228c (diff) |
Merge pull request #7111 from lat9nq/no-title-bar-version
main: Don't add an extra separator when the title version is absent
Diffstat (limited to 'src')
-rw-r--r-- | src/yuzu/main.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 0bd0c5b04..552c2cc63 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -2920,8 +2920,13 @@ void GMainWindow::UpdateWindowTitle(std::string_view title_name, std::string_vie if (title_name.empty()) { setWindowTitle(QString::fromStdString(window_title)); } else { - const auto run_title = - fmt::format("{} | {} | {} | {}", window_title, title_name, title_version, gpu_vendor); + const auto run_title = [window_title, title_name, title_version, gpu_vendor]() { + if (title_version.empty()) { + return fmt::format("{} | {} | {}", window_title, title_name, gpu_vendor); + } + return fmt::format("{} | {} | {} | {}", window_title, title_name, title_version, + gpu_vendor); + }(); setWindowTitle(QString::fromStdString(run_title)); } } |