From 13ae78f4b7fb0a7a1e365e67f800f3b56b90ca87 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Sat, 10 Mar 2018 18:32:03 -0500 Subject: [PATCH] Remove "v" prefix before version in window title --- src/window.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/window.cpp b/src/window.cpp index 47f4b45e..6f59a8b2 100644 --- a/src/window.cpp +++ b/src/window.cpp @@ -434,7 +434,10 @@ void windowRun() { mouseButtonStickyPop(); // Set window title - std::string windowTitle = gApplicationName + " v" + gApplicationVersion; + std::string windowTitle; + windowTitle = gApplicationName; + windowTitle += " "; + windowTitle += gApplicationVersion; if (!gRackWidget->lastPath.empty()) { windowTitle += " - "; windowTitle += extractFilename(gRackWidget->lastPath);