Browse Source
Merge pull request #81 from milligramme/patch-1
Update tui_main.c
master
Devine Lu Linvega
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
tui_main.c
|
|
@ -638,7 +638,7 @@ staticni void draw_oevent_list(WINDOW *win, Oevent_list const *oevent_list) { |
|
|
|
} |
|
|
|
case Oevent_type_osc_ints: { |
|
|
|
Oevent_osc_ints const *eo = &ev->osc_ints; |
|
|
|
wprintw(win, "OSC\t%c\tcount: %d ", eo->glyph, eo->count, eo->count); |
|
|
|
wprintw(win, "OSC\t%c\tcount: %d ", eo->glyph, eo->count); |
|
|
|
waddch(win, ACS_VLINE); |
|
|
|
for (Usz j = 0; j < eo->count; ++j) { |
|
|
|
wprintw(win, " %d", eo->numbers[j]); |
|
|
|