few more little edits

This commit is contained in:
Josh
2018-06-13 14:25:00 -05:00
parent 3817209be5
commit 156d378668
2 changed files with 2 additions and 1 deletions

1
API.md
View File

@@ -131,6 +131,7 @@ setValue(number val)
Events:
```lua
valueChanged(number newValue)
```

View File

@@ -78,7 +78,7 @@ function Slider:doMouseMoveCalculations()
val = val + self.minValue
if val ~= self.value then
self.value = val
self.valueChanged:call()
self.valueChanged:call(self.value)
end
end