Remove option to disable widget caching

Option was only introduced in case instabilities arise.
However, there weren't any reports of issues for a long time.
This commit is contained in:
WarmUpTill
2025-12-05 21:50:01 +01:00
committed by WarmUpTill
parent 5f6982b5bb
commit caf9e59475
6 changed files with 1 additions and 22 deletions

View File

@@ -208,7 +208,7 @@ void AdvSceneSwitcher::RemoveMacro(std::shared_ptr<Macro> &macro)
// Don't cache widgets for about to be deleted macros
MacroSegmentList::SetCachingEnabled(false);
ui->macros->Remove(macro);
MacroSegmentList::SetCachingEnabled(!switcher->disableMacroWidgetCache);
MacroSegmentList::SetCachingEnabled(true);
MacroSignalManager::Instance()->Remove(name);
}