mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 16:07:47 +00:00
LibGUI: Fix typo in TextEditor
This commit is contained in:
parent
9a28c8dc74
commit
92e337de21
1 changed files with 1 additions and 1 deletions
|
@ -572,7 +572,7 @@ void TextEditor::paint_event(PaintEvent& event)
|
|||
break;
|
||||
}
|
||||
if (span.range.start().line() == span.range.end().line() && span.range.end().column() < span.range.start().column()) {
|
||||
dbgln_if(TEXTEDITOR_DEBUG, "span form {}:{} to {}:{} has negative length => ignoring", span.range.start().line(), span.range.start().column(), span.range.end().line(), span.range.end().column());
|
||||
dbgln_if(TEXTEDITOR_DEBUG, "span from {}:{} to {}:{} has negative length => ignoring", span.range.start().line(), span.range.start().column(), span.range.end().line(), span.range.end().column());
|
||||
++span_index;
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue