save settings when any checkable menu item changes

This commit is contained in:
Andrew Meadows 2014-04-10 17:34:12 -07:00
parent a436b59971
commit af158a3a94

View file

@ -683,6 +683,7 @@ QAction* Menu::addCheckableActionToQMenuAndActionHash(QMenu* destinationMenu,
QAction::NoRole, menuItemLocation);
action->setCheckable(true);
action->setChecked(checked);
connect(action, SIGNAL(changed()), Application::getInstance(), SLOT(bumpSettings()));
return action;
}