fix scroll, container item size, tradewindow scroll, questlog window alignment, stop attacking same creature

This commit is contained in:
Henrique Santiago
2012-06-03 17:05:35 -03:00
parent e4cb9b27db
commit fda3ae6809
6 changed files with 71 additions and 44 deletions

View File

@@ -128,12 +128,12 @@ end
function UIScrollBar:decrement(count)
count = count or self.step
self:setValue(self.value - self.step)
self:setValue(self.value - count)
end
function UIScrollBar:increment(count)
count = count or self.step
self:setValue(self.value + self.step)
self:setValue(self.value + count)
end
function UIScrollBar:setMaximum(maximum)