mirror of
https://github.com/kepler155c/opus
synced 2025-01-01 03:10:28 +00:00
checkbox width bug, scroll canvas
This commit is contained in:
parent
195dbd365a
commit
fd672ac74e
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user