diff --git a/src/duckstation-qt/settingwidgetbinder.h b/src/duckstation-qt/settingwidgetbinder.h index cda2ae933..2614508a5 100644 --- a/src/duckstation-qt/settingwidgetbinder.h +++ b/src/duckstation-qt/settingwidgetbinder.h @@ -417,7 +417,7 @@ struct SettingAccessor { // We should be able to use QFont here.. but it doesn't update on change. widget->setStyleSheet(isNull ? u"font-style: italic;"_s : QString()); - widget->setPrefix(isNull ? qApp->translate("SettingWidgetBinder", "Default: ") : QString()); + widget->setPrefix(isNull ? qApp->translate("SettingWidgetBinder", "Global: ") : QString()); } static bool getBoolValue(const QSpinBox* widget) { return widget->value() > 0; } @@ -553,7 +553,7 @@ struct SettingAccessor { // We should be able to use QFont here.. but it doesn't update on change. widget->setStyleSheet(isNull ? QStringLiteral("font-style: italic;") : QString()); - widget->setPrefix(isNull ? qApp->translate("SettingWidgetBinder", "Default: ") : QString()); + widget->setPrefix(isNull ? qApp->translate("SettingWidgetBinder", "Global: ") : QString()); } static bool getBoolValue(const QDoubleSpinBox* widget) { return widget->value() > 0.0; }