Przeglądaj źródła

Merge pull request #7111 from lat9nq/no-title-bar-version

main: Don't add an extra separator when the title version is absent
bunnei 4 lat temu
rodzic
commit
e209fff374
1 zmienionych plików z 7 dodań i 2 usunięć
  1. 7 2
      src/yuzu/main.cpp

+ 7 - 2
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));
     }
 }