Browse Source

fix(settings): Emit correct signal when spellchecking is updated

reviewable/pr6219/r3
Anthony Bilinski 5 years ago
parent
commit
6801098651
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C
  1. 2
      src/persistence/settings.cpp

2
src/persistence/settings.cpp

@ -1084,7 +1084,7 @@ void Settings::setSpellCheckingEnabled(bool newValue) @@ -1084,7 +1084,7 @@ void Settings::setSpellCheckingEnabled(bool newValue)
if (newValue != spellCheckingEnabled) {
spellCheckingEnabled = newValue;
emit statusChangeNotificationEnabledChanged(statusChangeNotificationEnabled);
emit spellCheckingEnabledChanged(spellCheckingEnabled);
}
}

Loading…
Cancel
Save