Skip to content

Commit ade7f09

Browse files
committed
Fix unit outlines being hidden by default when hidden UI is enabled
1 parent ea43ef2 commit ade7f09

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

LuaUI/Widgets/gfx_outline_shader_gl4.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ local scaleWithHeight = true
8686
local functionScaleWithHeight = true
8787
local zoomScaleRange = 0.4
8888
local overrideDrawBoxes = false
89-
local hideWithUi = true
89+
local hideWithUi = false
9090

9191
local function PrintDrawBox()
9292
if overrideDrawBoxes then
@@ -147,7 +147,7 @@ options = {
147147
name = 'Disable with hidden UI',
148148
desc = 'Toggles outlines with Ctrl+F5.',
149149
type = 'bool',
150-
value = true,
150+
value = false,
151151
noHotkey = true,
152152
OnChange = function (self)
153153
hideWithUi = self.value

0 commit comments

Comments
 (0)