diff options
| author | Al <gabriel.cortesi@outlook.com> | 2018-03-18 10:06:04 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-18 10:06:04 +0100 |
| commit | b71d472e08701821a31c7ad48dcad04fe97b2d53 (patch) | |
| tree | 98158c9d539c30256eadc076c755a47d84329e12 /src/instancemanager.cpp | |
| parent | a4b0524c70f719849a6d99096138b096e0339e30 (diff) | |
| parent | bbce6506cdf15b5965e12ca2b10063fa8d3b85c0 (diff) | |
Merge pull request #276 from Al12rs/Develop
Disabled iniTweaks, added resources, a few ui fixes and text changes.
Diffstat (limited to 'src/instancemanager.cpp')
| -rw-r--r-- | src/instancemanager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/instancemanager.cpp b/src/instancemanager.cpp index d12ec119..43ae152b 100644 --- a/src/instancemanager.cpp +++ b/src/instancemanager.cpp @@ -105,7 +105,7 @@ QString InstanceManager::manageInstances(const QStringList &instanceList) const nullptr); for (const QString &instance : instanceList) { - selection.addChoice(instance, "", instance); + selection.addChoice(QIcon(":/MO/gui/multiply_red"), instance, "", instance); } if (selection.exec() == QDialog::Rejected) { @@ -120,7 +120,7 @@ QString InstanceManager::manageInstances(const QStringList &instanceList) const if (!deleteLocalInstance(choice)) { QMessageBox::warning(nullptr, QObject::tr("Failed to delete Instance"), - QObject::tr("Could not delete Instance \"%1\"").arg(choice), QMessageBox::Ok); + QObject::tr("Could not delete Instance \"%1\". \nIf the folder was still in use, restart MO and try again.").arg(choice), QMessageBox::Ok); } } } |
