Call menu_setting_apply_deferred after toggling setting

This commit is contained in:
twinaphex 2015-08-17 15:57:15 +02:00
parent 0218a2755d
commit fcc9ffb4a1

View File

@ -967,6 +967,7 @@ static int setting_bool_action_toggle_default(void *data, bool wraparound)
return -1;
*setting->value.boolean = !(*setting->value.boolean);
menu_setting_apply_deferred(setting);
return 0;
}