summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCurtis McEnroe2018-08-08 00:09:09 -0400
committerCurtis McEnroe2018-08-08 00:09:09 -0400
commitc9b7846d23d8e8e1d540dd0da5ce1e4b76c25486 (patch)
tree49fbf7fb8ab99ddbff57211bbc97d24d6eb4fdc7
parentee0df2846e7eebf0f91e9fd05f400ef57a554290 (diff)
Use BLACK LEFT-POINTING TRIANGLE for marker
-rw-r--r--ui.c3
1 files changed, 2 insertions, 1 deletions
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) {