Use BLACK LEFT-POINTING TRIANGLE for marker

weechat-hashes
Curtis McEnroe 2018-08-08 00:09:09 -04:00
parent ee0df2846e
commit c9b7846d23
No known key found for this signature in database
GPG Key ID: CEA2F97ADCFCD77C
1 changed files with 2 additions and 1 deletions

3
ui.c
View File

@ -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) {