Browse Source

Remove "v" prefix before version in window title

tags/v0.6.0
Andrew Belt 7 years ago
parent
commit
13ae78f4b7
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      src/window.cpp

+ 4
- 1
src/window.cpp View File

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


Loading…
Cancel
Save