Browse Source
Merge pull request #7111 from lat9nq/no-title-bar-version
main: Don't add an extra separator when the title version is absent
pull/15/merge
bunnei
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
7 additions and
2 deletions
-
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)); |
|
|
|
} |
|
|
|
} |
|
|
|
|