Skip to content

Commit 6d06c28

Browse files
committed
Replace tab with space, in function arguments (again)
1 parent d4d2f00 commit 6d06c28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/impact/debug/graph-panel.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ ig.DebugGraphPanel = ig.DebugPanel.extend({
176176
for( var i = 0; i < this.marks.length; i++ ) {
177177
var m = this.marks[i];
178178
this.ctx.fillStyle = m.color;
179-
this.ctx.fillRect( x, 0, 1, this.height );
179+
this.ctx.fillRect( x, 0, 1, this.height );
180180
if( m.msg ) {
181181
this.ctx.fillText( m.msg, x-1, this.textY );
182182
this.textY = (this.textY+8)%32;

0 commit comments

Comments
 (0)