allow inputs to pass through when minimized

develop
Myk Taylor 2023-03-17 14:59:39 -07:00
parent 2bceff76e0
commit 181b930070
No known key found for this signature in database
GPG Key ID: 8A39CA0FA0C16E78
1 changed files with 2 additions and 2 deletions

@ -603,8 +603,9 @@ function PlannerOverlay:onInput(keys)
self.minimized = not self.minimized self.minimized = not self.minimized
return true return true
end end
if self.minimized then return false end
if PlannerOverlay.super.onInput(self, keys) then if PlannerOverlay.super.onInput(self, keys) then
return not self.minimized return true
end end
if keys._MOUSE_L_DOWN then if keys._MOUSE_L_DOWN then
if is_over_options_panel() then return false end if is_over_options_panel() then return false end
@ -616,7 +617,6 @@ function PlannerOverlay:onInput(keys)
or self.subviews.errors:getMousePos() then or self.subviews.errors:getMousePos() then
return true return true
end end
if self.minimized then return false end
if not is_construction() and #uibs.errors > 0 then return true end if not is_construction() and #uibs.errors > 0 then return true end
if dfhack.gui.getMousePos() then if dfhack.gui.getMousePos() then
if is_choosing_area() or cur_building_has_no_area() then if is_choosing_area() or cur_building_has_no_area() then