Remove ; and little fix to MiniWindow

This commit is contained in:
Henrique Santiago
2012-08-08 11:24:59 -03:00
parent 85b52fbdfd
commit 16a3dd2b7e
2 changed files with 8 additions and 6 deletions

View File

@@ -110,11 +110,13 @@ function UIMiniWindow:onSetup()
self.miniLoaded = true
if oldParent and oldParent:getClassName() == 'UIMiniWindowContainer' then
oldParent:order()
end
if newParent and newParent:getClassName() == 'UIMiniWindowContainer' and newParent ~= oldParent then
newParent:order()
if self.save then
if oldParent and oldParent:getClassName() == 'UIMiniWindowContainer' then
oldParent:order()
end
if newParent and newParent:getClassName() == 'UIMiniWindowContainer' and newParent ~= oldParent then
newParent:order()
end
end
end