fixed an issue when loading specified SGCT config files; issue/1624

This commit is contained in:
Micah
2021-08-03 15:44:03 -04:00
parent 8211b4a113
commit 88708e3bf4

View File

@@ -478,7 +478,7 @@ std::string LauncherWindow::selectedWindowConfig() const {
int idx = _windowConfigBox->currentIndex();
if (idx == 0) {
return _sgctConfigName;
} else if (idx > _userAssetCount) {
} else if (idx > _userConfigCount) {
return "${CONFIG}/" + _windowConfigBox->currentText().toStdString();
}
else {