aboutsummaryrefslogtreecommitdiff
path: root/vis.c
diff options
context:
space:
mode:
Diffstat (limited to 'vis.c')
-rw-r--r--vis.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/vis.c b/vis.c
index 6d02f4b..3825500 100644
--- a/vis.c
+++ b/vis.c
@@ -245,6 +245,10 @@ void vis_draw(Vis *vis) {
vis->ui->draw(vis->ui);
}
+void vis_redraw(Vis *vis) {
+ vis->ui->redraw(vis->ui);
+}
+
void vis_update(Vis *vis) {
for (Win *win = vis->windows; win; win = win->next)
view_update(win->view);