- Fixed a bug with menu desaturation where erase and close buttons stay colored after clicking on it.

- Fixed stretch where sometimes after release the window, all exceeded bars shows up and fade in again.
- Fixed a bug with the +- buttons on the window's scale option.
- Fixed the border for sub menus on mode menu.
This commit is contained in:
tercio
2014-12-01 21:50:21 -02:00
parent 586842958b
commit fc164b7a8b
9 changed files with 121 additions and 106 deletions
+7 -5
View File
@@ -426,13 +426,14 @@
local barra = self.barras[index]
if (barra) then
if (index <= X) then
--gump:Fade (barra, 0)
gump:Fade (barra, "out")
else
if (self.baseframe.isStretching or self.auto_resize) then
--if (self.baseframe.isStretching or self.auto_resize) then
gump:Fade (barra, 1)
else
gump:Fade (barra, "in", 0.1)
end
--else
-- gump:Fade (barra, 1)
--end
end
end
end
@@ -461,7 +462,8 @@
if (self.baseframe.isStretching or self.auto_resize) then
gump:Fade (barra, 1)
else
gump:Fade (barra, "in", 0.1)
--gump:Fade (barra, "in", 0.1)
gump:Fade (barra, 1)
end
end
end