make widgets identical to their data definitions

This commit is contained in:
airstruck
2015-10-30 05:38:46 -04:00
parent 1c491335f5
commit 62ca5bf50a
7 changed files with 47 additions and 54 deletions

View File

@@ -22,9 +22,9 @@ return function (self)
nextSibling[dimension] - event[axis])
end
prevSibling:reflow()
nextSibling:reflow()
self:reflow()
prevSibling:reshape()
nextSibling:reshape()
self:reshape()
end)
end

View File

@@ -24,7 +24,7 @@ return function (self)
self.value = (event.x - x1) / (x2 - x1)
if self.value < 0 then self.value = 0 end
if self.value > 1 then self.value = 1 end
self:reflow()
self:reshape()
end
self:onPressStart(press)