src/nnn.c | 8 ++------ diff --git a/src/nnn.c b/src/nnn.c index 97aae093d89c2b026aec1aa2aa62a33d18866304..508ee915fbfe39127f65499c4f58b32fbf334295 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -6359,13 +6359,9 @@ } static inline void markhovered(void) { - if (cfg.showdetail && ndents) { /* Reversed block for hovered entry */ + if (cfg.showdetail && ndents) { /* Bold forward arrowhead */ tocursor(); -#ifdef ICONS_ENABLED - addstr(MD_ARROW_FORWARD); -#else - addch(' ' | A_REVERSE); -#endif + addch('>' | A_BOLD); } }