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);