diff options
| author | Jeremy Rimpo <jrim@rimpo.org> | 2018-03-05 00:13:09 -0600 |
|---|---|---|
| committer | Jeremy Rimpo <jrim@rimpo.org> | 2018-03-05 00:13:09 -0600 |
| commit | 3556d4f58f09b5d21b1179bbdf87e9bd78be7254 (patch) | |
| tree | 810fbe6696a01e8f997219fcccde3512c93ba7ec /src/instancemanager.cpp | |
| parent | 5fcd51aad81c9c4495a19306d13c4f55bd2519f8 (diff) | |
Light flagged master support and other minor 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 29068c5b..d12ec119 100644 --- a/src/instancemanager.cpp +++ b/src/instancemanager.cpp @@ -133,7 +133,7 @@ QString InstanceManager::queryInstanceName(const QStringList &instanceList) cons QString instanceId; while (instanceId.isEmpty()) { QInputDialog dialog; - + dialog.setWindowTitle(QObject::tr("Enter a Name for the new Instance")); dialog.setLabelText(QObject::tr("Enter a new name or select one from the sugested list (only letters and numbers allowed):")); // would be neat if we could take the names from the game plugins but @@ -142,7 +142,7 @@ QString InstanceManager::queryInstanceName(const QStringList &instanceList) cons dialog.setComboBoxItems({ "NewName", "Fallout 4", "SkyrimSE", "Skyrim", "Fallout 3", "Fallout NV", "FO4VR", "Oblivion" }); dialog.setComboBoxEditable(true); - + if (dialog.exec() == QDialog::Rejected) { throw MOBase::MyException(QObject::tr("Canceled")); } |
