From 347abe6c844334855ce90c1fd1c090a4620c8a3a Mon Sep 17 00:00:00 2001 From: WarmUpTill <19472752+WarmUpTill@users.noreply.github.com> Date: Mon, 5 May 2025 19:41:00 +0200 Subject: [PATCH] Enable macro highlighting by default --- lib/macro/macro-settings.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/macro/macro-settings.hpp b/lib/macro/macro-settings.hpp index beee699c..f9e7ef8a 100644 --- a/lib/macro/macro-settings.hpp +++ b/lib/macro/macro-settings.hpp @@ -20,9 +20,9 @@ public: void Save(obs_data_t *obj) const; void Load(obs_data_t *obj); - bool _highlightExecuted = false; - bool _highlightConditions = false; - bool _highlightActions = false; + bool _highlightExecuted = true; + bool _highlightConditions = true; + bool _highlightActions = true; bool _newMacroCheckInParallel = false; bool _newMacroRegisterHotkeys = true; bool _newMacroUseShortCircuitEvaluation = false;