diff --git a/src/hkml_view.py b/src/hkml_view.py index a1494622..03937ef3 100644 --- a/src/hkml_view.py +++ b/src/hkml_view.py @@ -223,6 +223,9 @@ def __draw(self): elif line_idx == highlight_row: self.screen.addstr(row, 0, line, highlight_color | color_attrib) + elif line_idx == self.focus_row: + self.screen.addstr(row, 0, line, + color | color_attrib | self.effect_reverse) else: self.screen.addstr(row, 0, line, color | color_attrib)