summaryrefslogtreecommitdiff
path: root/js/ui
diff options
context:
space:
mode:
authortimb <opuscule@gmail.com>2016-03-13 17:46:43 -0700
committertimb <opuscule@gmail.com>2016-03-13 17:46:43 -0700
commitb55c277f18a56cb6c6f85df968111f230e828b07 (patch)
treef2c72f1b1a73251f9ff5a0f37eb59dda68a37546 /js/ui
parentc76582f92f4686dff929bff706b24eb5d1058e78 (diff)
rm lex.fill since it is exactly the same fn as lex.assign
Diffstat (limited to 'js/ui')
-rw-r--r--js/ui/brush.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/ui/brush.js b/js/ui/brush.js
index 8cc858f..668538f 100644
--- a/js/ui/brush.js
+++ b/js/ui/brush.js
@@ -41,7 +41,7 @@ var brush = (function(){
}
else {
fillColor = brush.bg
- lex.fill(brush)
+ lex.assign(brush)
}
brush.focus(x, y)
})
@@ -55,7 +55,7 @@ var brush = (function(){
lex.clear()
}
else {
- lex.fill(brush)
+ lex.assign(brush)
}
brush.focus(x, y)
})