From 3556d4f58f09b5d21b1179bbdf87e9bd78be7254 Mon Sep 17 00:00:00 2001 From: Jeremy Rimpo Date: Mon, 5 Mar 2018 00:13:09 -0600 Subject: Light flagged master support and other minor changes --- src/instancemanager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/instancemanager.cpp') 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")); } -- cgit v1.3.1