Fixed issue in function fitAll: mini windows containers was exceeding the size of the panels.

master
dalvorsn 8 years ago
parent fa3068f6e6
commit a165bef741

@ -69,7 +69,7 @@ function UIMiniWindowContainer:fitAll(noRemoveChild)
end
local child = children[i]
if child ~= noRemoveChild then
if child ~= noRemoveChild and child:isVisible() then
local childHeight = child:getHeight()
sumHeight = sumHeight - childHeight
table.insert(removeChildren, child)

Loading…
Cancel
Save