summaryrefslogtreecommitdiff
path: root/js/matrix.js
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2014-11-22 21:06:04 -0500
committerJules Laplace <jules@okfoc.us>2014-11-22 21:06:04 -0500
commitfbbbe8cc0457c2f3f77cfc8d9b8070a593938694 (patch)
tree97909958794abcd919be0e78eb64f9a9ae71822b /js/matrix.js
parent463e30eb8f15d90b3f6b45fd34f814689306a47f (diff)
square brush fix..
Diffstat (limited to 'js/matrix.js')
-rw-r--r--js/matrix.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/js/matrix.js b/js/matrix.js
index 5cecfed..73c2992 100644
--- a/js/matrix.js
+++ b/js/matrix.js
@@ -52,8 +52,7 @@ Matrix.prototype.fill = function(fg, bg){
this.fg = fg
this.bg = bg
this.forEach(function(lex,x,y){
- lex.fg = fg
- lex.bg = bg
+ lex.fill(fg,bg)
lex.build()
})
}