diff options
Diffstat (limited to 'Source/Core/DolphinQt/Config/ConfigControls/ConfigInteger.cpp')
| -rw-r--r-- | Source/Core/DolphinQt/Config/ConfigControls/ConfigInteger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinQt/Config/ConfigControls/ConfigInteger.cpp b/Source/Core/DolphinQt/Config/ConfigControls/ConfigInteger.cpp index a81bfd7aed..5246de60f5 100644 --- a/Source/Core/DolphinQt/Config/ConfigControls/ConfigInteger.cpp +++ b/Source/Core/DolphinQt/Config/ConfigControls/ConfigInteger.cpp @@ -33,7 +33,7 @@ void ConfigInteger::OnConfigChanged() ConfigIntegerLabel::ConfigIntegerLabel(const QString& text, ConfigInteger* widget) : QLabel(text), m_widget(QPointer<ConfigInteger>(widget)) { - connect(&Settings::Instance(), &Settings::ConfigChanged, this, [this]() { + connect(&Settings::Instance(), &Settings::ConfigChanged, this, [this] { // Label shares font changes with ConfigInteger to mark game ini settings. if (m_widget) setFont(m_widget->font()); |
