Add comment

This commit is contained in:
RickyRister 2026-05-05 08:37:18 -07:00 committed by GitHub
parent 97ff9f049f
commit 21d8e6b9ad
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -10,6 +10,7 @@ SettingsManager::SettingsManager(const QString &_settingPath,
QSettings SettingsManager::getSettings() const
{
// Do not store the QSettings instance in a field, as that is not threadsafe (see #6747)
return QSettings(settingPath, QSettings::IniFormat);
}