mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:58:12 +00:00
LibSQL: Fix off-by-one error in SyntaxHighlighter
This changes the SQL SyntaxHighlighter to conform to the now-fixed rendering of syntax highlighting spans in GUI::TextEditor.
This commit is contained in:
parent
a9378ce5c2
commit
04897f6842
1 changed files with 2 additions and 2 deletions
|
@ -52,8 +52,8 @@ void SyntaxHighlighter::rehighlight(Palette const& palette)
|
|||
return;
|
||||
|
||||
GUI::TextPosition position { token.line_number() - 1, token.line_column() - 1 };
|
||||
for (size_t i = 0; i < str.length() - 1; ++i) {
|
||||
if (str[i] == '\n') {
|
||||
for (char c : str) {
|
||||
if (c == '\n') {
|
||||
position.set_line(position.line() + 1);
|
||||
position.set_column(0);
|
||||
} else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue