From c9b7846d23d8e8e1d540dd0da5ce1e4b76c25486 Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Wed, 8 Aug 2018 00:09:09 -0400 Subject: Use BLACK LEFT-POINTING TRIANGLE for marker --- ui.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ui.c') diff --git a/ui.c b/ui.c index adc752f..cc7dcf8 100644 --- a/ui.c +++ b/ui.c @@ -298,7 +298,8 @@ static void logMark(void) { int y, _; getyx(ui.log, y, _); mvwvline(ui.log, 0, lastCol(), ' ', LOG_LINES); - mvwaddch(ui.log, y, lastCol(), COLOR_PAIR(1 + COLOR_RED) | '_'); + wattr_set(ui.log, A_NORMAL, 1 + COLOR_RED, NULL); + mvwaddwstr(ui.log, y, lastCol(), L"◄"); } static void logUp(void) { -- cgit 1.4.1 el='branches'> dontfiles
summary refs log tree commit diff
path: root/doc/rfc/rfc.in (unfollow)
Commit message (Expand)Author
2022-06-02Don't duplicate path stringJune McEnroe
2022-06-02Use stderr instead of /dev/tty, realloc buffer if lines too longJune McEnroe
2022-06-02Add initial working version of qfJune McEnroe
2022-05-29Set prompt for okshJune McEnroe