1
1
mirror of https://github.com/tstack/lnav.git synced 2024-08-16 08:20:29 +03:00

Make the highlighting of the selected line more visible

This commit is contained in:
Florian Münchbach 2022-11-01 20:55:03 +01:00
parent 7f8b031b83
commit a8a668b40a

View File

@ -459,9 +459,10 @@ textview_curses::textview_value_for_row(vis_line_t row, attr_line_t& value_out)
}
if (row == this->get_selection()) {
sa.emplace_back(line_range{orig_line.lr_start, -1},
VC_STYLE.value(text_attrs{
COLOR_BLUE, A_BOLD | A_DIM | A_UNDERLINE}));
sa.emplace_back(
line_range{orig_line.lr_start, -1},
VC_STYLE.value(text_attrs{
A_BOLD | A_DIM | A_UNDERLINE, COLOR_CYAN, COLOR_RED}));
}
for (auto& tc_highlight : this->tc_highlights) {