Merge pull request #728 from dalvorsn/master
Fixed issue in function fitAll
This commit is contained in:
commit
0dfdb22509
|
@ -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…
Reference in New Issue