mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-03 10:04:32 +03:00
Merge branch '3417_marked_selected'
* 3417_marked_selected: Fix vertical line color if a file is marked and selected
This commit is contained in:
commit
553dd8053b
@ -860,8 +860,10 @@ format_file (WPanel * panel, int file_index, int width, int attr, gboolean issta
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (attr == SELECTED || attr == MARKED_SELECTED)
|
if (attr == SELECTED)
|
||||||
tty_setcolor (SELECTED_COLOR);
|
tty_setcolor (SELECTED_COLOR);
|
||||||
|
else if (attr == MARKED_SELECTED)
|
||||||
|
tty_setcolor (MARKED_SELECTED_COLOR);
|
||||||
else
|
else
|
||||||
tty_setcolor (NORMAL_COLOR);
|
tty_setcolor (NORMAL_COLOR);
|
||||||
tty_print_one_vline (TRUE);
|
tty_print_one_vline (TRUE);
|
||||||
|
Loading…
Reference in New Issue
Block a user