mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-05-07 14:13:38 -04:00
Fix MacOS build and incorrect string format in language change log
This commit is contained in:
@@ -325,7 +325,7 @@ void OpenRGBSettingsPage::on_ComboBoxLanguage_currentTextChanged(const QString l
|
||||
if(loaded)
|
||||
{
|
||||
app->installTranslator(&translator);
|
||||
LOG_DEBUG("[Settings] Changed Language to %s from the %s file\n", language, file);
|
||||
LOG_DEBUG("[Settings] Changed Language to %s from the %s file\n", language.toStdString().c_str(), file.toStdString().c_str());
|
||||
|
||||
json ui_settings = ResourceManager::get()->GetSettingsManager()->GetSettings("UserInterface");
|
||||
std::string saved = ui_settings["language"].get<std::string>();
|
||||
|
||||
Reference in New Issue
Block a user