ide: Current file errors improvements

This commit is contained in:
Mirek Fidler 2022-10-17 12:01:40 +02:00
parent 6809868d25
commit 20a8a4e1c0
8 changed files with 141 additions and 111 deletions

View file

@ -1151,7 +1151,7 @@ void CodeEditor::HighlightLine(int line, Vector<LineEdit::Highlight>& hl, int64
}
for(Point p : errors)
if(p.y == line && p.x < hl.GetCount()) {
hl[p.x].paper = Blend(LtRed(), SColorPaper(), 100);
hl[p.x].paper = hl_style[PAPER_ERROR_FILE].color;
hl[p.x].flags |= LineEdit::NOENDFILL;
}
}