mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 12:32:40 +03:00
Fix vertical line color if a file is marked and selected
This commit is contained in:
parent
ada7f97f4e
commit
25d554ab03
@ -860,8 +860,10 @@ format_file (WPanel * panel, int file_index, int width, int attr, gboolean issta
|
||||
}
|
||||
else
|
||||
{
|
||||
if (attr == SELECTED || attr == MARKED_SELECTED)
|
||||
if (attr == SELECTED)
|
||||
tty_setcolor (SELECTED_COLOR);
|
||||
else if (attr == MARKED_SELECTED)
|
||||
tty_setcolor (MARKED_SELECTED_COLOR);
|
||||
else
|
||||
tty_setcolor (NORMAL_COLOR);
|
||||
tty_print_one_vline (TRUE);
|
||||
|
Loading…
Reference in New Issue
Block a user