Skip to content

Commit

Permalink
Keep Cardinal Mini as window title when loading patches
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <[email protected]>
  • Loading branch information
falkTX committed Aug 28, 2023
1 parent 08763a2 commit bf3fa93
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/override/Window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,11 @@ void Window::step() {

// Set window title
if (isStandalone()) {
#if CARDINAL_VARIANT_MINI
std::string windowTitle = "Cardinal Mini";
#else
std::string windowTitle = "Cardinal";
#endif
if (APP->patch->path != "") {
windowTitle += " - ";
if (!APP->history->isSaved())
Expand Down

0 comments on commit bf3fa93

Please sign in to comment.