fix redrawing bugs
This commit is contained in:
parent
c0ee808786
commit
d9ac4f3abe
1 changed files with 5 additions and 2 deletions
|
|
@ -120,8 +120,11 @@ var BackgroundTokenizer = function(tokenizer, editor) {
|
|||
this.lines[row] = tokens;
|
||||
}
|
||||
}
|
||||
else
|
||||
rows.push(this.lines[row]);
|
||||
else {
|
||||
var tokens = this.lines[row];
|
||||
state = tokens.state;
|
||||
rows.push(tokens);
|
||||
}
|
||||
}
|
||||
return rows;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue