Browse Source

Merge pull request #816 from jamesobutler/799-settings-changes-indicator

BUG: Fix incorrect changed settings indicator
Steve Pieper 6 years ago
parent
commit
88a5de825c
1 changed files with 1 additions and 0 deletions
  1. 1 0
      Libs/Widgets/ctkSettingsPanel.cpp

+ 1 - 0
Libs/Widgets/ctkSettingsPanel.cpp

@@ -418,6 +418,7 @@ void ctkSettingsPanel::applySettings()
     {
     {
     PropertyType& prop = d->Properties[key];
     PropertyType& prop = d->Properties[key];
     prop.setPreviousValue(prop.value());
     prop.setPreviousValue(prop.value());
+    emit settingChanged(key, prop.value());
     }
     }
 }
 }