We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Trying to open settings (Ctrl+T) causes an error at line 362, apparently during a call to QString::operator[].
QString::operator[]
RMG/Source/RMG/UserInterface/Dialog/SettingsDialog.cpp
Lines 355 to 367 in 69c24b9
As far as I can tell, pluginFileNames is supposed to be an array of QString, so I have no idea what's going on.
pluginFileNames
QString
The text was updated successfully, but these errors were encountered:
That's a nice catch, it's supposed to be
if (pluginFileNames[index] == QString::fromStdString(p.File))
I copy pasted some code from the commonPluginSettings function, which did things slightly differently.
commonPluginSettings
I'll try to push the fix as soon as I'm on my desktop again ❤️
Sorry, something went wrong.
Fixed it with 37839b0, I'll include it in the next release, thank you for reporting! ❤️
No branches or pull requests
Trying to open settings (Ctrl+T) causes an error at line 362, apparently during a call to
QString::operator[]
.RMG/Source/RMG/UserInterface/Dialog/SettingsDialog.cpp
Lines 355 to 367 in 69c24b9
As far as I can tell,
pluginFileNames
is supposed to be an array ofQString
, so I have no idea what's going on.The text was updated successfully, but these errors were encountered: