diff --git a/src/menu.rs b/src/menu.rs index af1f6b9..54906a2 100644 --- a/src/menu.rs +++ b/src/menu.rs @@ -462,7 +462,8 @@ impl Menu { } let (x, y) = self.screen_coords(self.link)?; Some(format!( - "{}\x1b[97;1m*\x1b[0m{}", + "{}{}*\x1b[0m{}", + self.config.read().unwrap().theme.ui_cursor, terminal::Goto(x, y), terminal::HideCursor ))