diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2016-05-20 13:16:09 +0200 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2016-05-22 00:05:30 +0200 |
| commit | 207106ffca7b291b06cbd5366264cc66ee76af6a (patch) | |
| tree | 44fa595732858c0f390b4e872e47d7d9d7341e44 /ui-curses.c | |
| parent | 8df64eae8924d4e2c2ca1b883e8149108ed4333d (diff) | |
| download | vis-207106ffca7b291b06cbd5366264cc66ee76af6a.tar.gz vis-207106ffca7b291b06cbd5366264cc66ee76af6a.tar.xz | |
ui: s/UiStyles/UiStyle/g
Diffstat (limited to 'ui-curses.c')
| -rw-r--r-- | ui-curses.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-curses.c b/ui-curses.c index d6f042b..45238f3 100644 --- a/ui-curses.c +++ b/ui-curses.c @@ -696,7 +696,7 @@ static void ui_window_draw(UiWin *w) { for (const Line *l = view_lines_get(win->view); l; l = l->next) { bool cursor_line = l->lineno == cursor_lineno; for (int x = 0; x < width; x++) { - enum UiStyles style_id = l->cells[x].style; + enum UiStyle style_id = l->cells[x].style; if (style_id == 0) style_id = UI_STYLE_DEFAULT; CellStyle *style = &win->styles[style_id]; |
