aboutsummaryrefslogtreecommitdiff
path: root/view.c
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2015-10-15 22:21:19 +0200
committerMarc André Tanner <mat@brain-dump.org>2015-10-15 22:21:19 +0200
commitf752a10702f20e49bd4da4f1400487fc96dc35f6 (patch)
tree25fa13adb81c96fd8a6ab86b421bc8bee2c2594e /view.c
parent4d29951b7d7f40e77617b1ce7dfec9dfb4c7e235 (diff)
downloadvis-f752a10702f20e49bd4da4f1400487fc96dc35f6.tar.gz
vis-f752a10702f20e49bd4da4f1400487fc96dc35f6.tar.xz
ui: cleanup redrawing
Diffstat (limited to 'view.c')
-rw-r--r--view.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/view.c b/view.c
index 9348753..6f48aaa 100644
--- a/view.c
+++ b/view.c
@@ -519,7 +519,7 @@ void view_draw(View *view) {
}
if (view->ui)
- view->ui->draw_text(view->ui, view->topline);
+ view->ui->draw(view->ui);
}
bool view_resize(View *view, int width, int height) {