From ade7f09663a7ee0672fdf393f3ccf96cc4ee4ae9 Mon Sep 17 00:00:00 2001 From: Bill Tyros Date: Wed, 3 Dec 2025 09:08:42 -0500 Subject: [PATCH] Fix unit outlines being hidden by default when hidden UI is enabled --- LuaUI/Widgets/gfx_outline_shader_gl4.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LuaUI/Widgets/gfx_outline_shader_gl4.lua b/LuaUI/Widgets/gfx_outline_shader_gl4.lua index b369ae0eca..d277ba7496 100644 --- a/LuaUI/Widgets/gfx_outline_shader_gl4.lua +++ b/LuaUI/Widgets/gfx_outline_shader_gl4.lua @@ -86,7 +86,7 @@ local scaleWithHeight = true local functionScaleWithHeight = true local zoomScaleRange = 0.4 local overrideDrawBoxes = false -local hideWithUi = true +local hideWithUi = false local function PrintDrawBox() if overrideDrawBoxes then @@ -147,7 +147,7 @@ options = { name = 'Disable with hidden UI', desc = 'Toggles outlines with Ctrl+F5.', type = 'bool', - value = true, + value = false, noHotkey = true, OnChange = function (self) hideWithUi = self.value