mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-08-22 01:05:53 -05:00
Change settings defaults
* Start plugin by default * Highlight condittions, actions, and recently executed macros by default * Open Macro tab instead of General tab when opening settings window * No longer start legacy websocket server and client
This commit is contained in:
@@ -27,6 +27,9 @@ void MacroProperties::Save(obs_data_t *obj) const
|
||||
void MacroProperties::Load(obs_data_t *obj)
|
||||
{
|
||||
auto data = obs_data_get_obj(obj, "macroProperties");
|
||||
obs_data_set_default_bool(data, "highlightExecuted", true);
|
||||
obs_data_set_default_bool(data, "highlightConditions", true);
|
||||
obs_data_set_default_bool(data, "highlightActions", true);
|
||||
_highlightExecuted = obs_data_get_bool(data, "highlightExecuted");
|
||||
_highlightConditions = obs_data_get_bool(data, "highlightConditions");
|
||||
_highlightActions = obs_data_get_bool(data, "highlightActions");
|
||||
|
||||
Reference in New Issue
Block a user