diff options
author | Petr Mrázek <peterix@users.noreply.github.com> | 2019-06-23 21:31:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-23 21:31:56 +0200 |
commit | 75ddbc8851c8227baad4e2f1d120785090d5e992 (patch) | |
tree | cfe3af77938b37837627afa0e3d494f8cf0b5eb1 /api/logic/InstanceList.cpp | |
parent | 2f1d31cf43df796a267c2ae32c8ce16be269f698 (diff) | |
parent | 1ed84eddd53cfd7e21b96a2f5e55e07d448e2482 (diff) | |
download | MultiMC-75ddbc8851c8227baad4e2f1d120785090d5e992.tar MultiMC-75ddbc8851c8227baad4e2f1d120785090d5e992.tar.gz MultiMC-75ddbc8851c8227baad4e2f1d120785090d5e992.tar.lz MultiMC-75ddbc8851c8227baad4e2f1d120785090d5e992.tar.xz MultiMC-75ddbc8851c8227baad4e2f1d120785090d5e992.zip |
Merge pull request #2705 from Janrupf/feature/fix_external_deletion_interaction
GH-2515 Save instance ID before display dialog
Diffstat (limited to 'api/logic/InstanceList.cpp')
-rw-r--r-- | api/logic/InstanceList.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api/logic/InstanceList.cpp b/api/logic/InstanceList.cpp index af4e85cf..c713b626 100644 --- a/api/logic/InstanceList.cpp +++ b/api/logic/InstanceList.cpp @@ -234,7 +234,7 @@ void InstanceList::deleteInstance(const InstanceId& id) auto inst = getInstanceById(id); if(!inst) { - qDebug() << "Cannot delete instance" << id << " No such instance is present."; + qDebug() << "Cannot delete instance" << id << ". No such instance is present (deleted externally?)."; return; } |