diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2021-02-12 03:22:52 -0500 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2021-02-12 03:22:52 -0500 |
| commit | 48274f33579076711c0475e84c7adf68c52df733 (patch) | |
| tree | 51e564e682430179920b7ab937a5f66c27e0645f /src/statusbar.cpp | |
| parent | 7d36bc20d0a6c327079141149a7f138c0f7726ac (diff) | |
- renamed instance::name() to displayName() to reduce confusion with portable instances
- better errors when running incorrect shortcuts
- fixed shortcuts being created with moshortcut://Portable:exe instead of an empty instance name for portable instances
Diffstat (limited to 'src/statusbar.cpp')
| -rw-r--r-- | src/statusbar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/statusbar.cpp b/src/statusbar.cpp index 8fa43d5b..39acc32e 100644 --- a/src/statusbar.cpp +++ b/src/statusbar.cpp @@ -155,7 +155,7 @@ void StatusBar::updateNormalMessage(OrganizerCore& core) QString instance = "?"; if (auto i=InstanceManager::singleton().currentInstance()) - instance = i->name(); + instance = i->displayName(); QString profile = core.profileName(); |
