From 4a98d064f7fac20145bc9d6c87d98238f1b52411 Mon Sep 17 00:00:00 2001 From: WarmUpTill <19472752+WarmUpTill@users.noreply.github.com> Date: Mon, 30 Mar 2026 21:08:51 +0200 Subject: [PATCH] Enable testing --- lib/utils/temp-variable.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/utils/temp-variable.cpp b/lib/utils/temp-variable.cpp index 15005af7..f429fa73 100644 --- a/lib/utils/temp-variable.cpp +++ b/lib/utils/temp-variable.cpp @@ -723,13 +723,12 @@ TempVarSignalManager *TempVarSignalManager::Instance() void NotifyUIAboutTempVarChange(MacroSegment *segment) { IncrementTempVarInUseGeneration(); - obs_queue_task( - OBS_TASK_UI, + QueueUITask( [](void *segment) { TempVarSignalManager::Instance()->SegmentTempVarsChanged( (MacroSegment *)segment); }, - segment, false); + segment); } } // namespace advss