mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Fix painting of selection with change tracking
When partially selecting an element, the selected text color was not the same as when selecting it completely. Fixes bug #9809.
This commit is contained in:
parent
c061e339f9
commit
febbcf7f6c
@ -243,13 +243,11 @@ void RowPainter::paintStringAndSel(Row::Element const & e)
|
||||
bool const all_sel = (e.pos >= row_.sel_beg && e.endpos < row_.sel_end)
|
||||
|| pi_.selected;
|
||||
|
||||
if (all_sel) {
|
||||
if (all_sel || e.change.changed()) {
|
||||
Font copy = e.font;
|
||||
copy.fontInfo().setPaintColor(Color_selectiontext);
|
||||
pi_.pain.text(int(x_), yo_, e.str, copy, e.extra);
|
||||
} else if (e.change.changed()) {
|
||||
Font copy = e.font;
|
||||
copy.fontInfo().setPaintColor(e.change.color());
|
||||
Color const col = e.change.changed() ? e.change.color()
|
||||
: Color_selectiontext;
|
||||
copy.fontInfo().setPaintColor(col);
|
||||
pi_.pain.text(int(x_), yo_, e.str, copy, e.extra);
|
||||
} else if (!some_sel) {
|
||||
pi_.pain.text(int(x_), yo_, e.str, e.font, e.extra);
|
||||
|
Loading…
Reference in New Issue
Block a user