Develop 1.8 #20

Merged
Kan18 merged 242 commits from develop-1.8 into master-1.8 2019-11-10 20:52:08 -05:00
2 changed files with 12 additions and 5 deletions
Showing only changes of commit fd672ac74e - Show all commits

View File

@@ -824,12 +824,19 @@ function UI.Window:scrollIntoView()
parent:draw()
end
-- TODO: fix
local function setOffset(y)
parent.offy = y
if parent.canvas then
parent.canvas.offy = parent.offy
end
parent:draw()
end
if self.y <= parent.offy then
parent.offy = math.max(0, self.y - 1)
parent:draw()
setOffset(math.max(0, self.y - 1))
elseif self.y + self.height > parent.height + parent.offy then
parent.offy = self.y + self.height - parent.height - 1
parent:draw()
setOffset(self.y + self.height - parent.height - 1)
end
end

View File

@@ -24,7 +24,7 @@ function UI.Checkbox:setParent()
if not self.width and not self.ex then
self.width = (self.label and #self.label or 0) + 3
else
self.widthh = 3
self.width = 3
end
UI.Window.setParent(self)
end