summaryrefslogtreecommitdiff
path: root/src/fe-text
diff options
context:
space:
mode:
authorailin-nemui <ailin-nemui@users.noreply.github.com>2018-01-06 01:05:35 +0100
committerailin-nemui <ailin-nemui@users.noreply.github.com>2018-01-06 01:05:35 +0100
commitded4e4d98df3c8df20119574c145fe1a736ee994 (patch)
treea26f42fdc7a4ddc863d862f31ac92a699678f85d /src/fe-text
parent63d8e884ddb970d6a8b5c6a7a546f0283d38a055 (diff)
downloadirssi-ded4e4d98df3c8df20119574c145fe1a736ee994.zip
fix redraw
Diffstat (limited to 'src/fe-text')
-rw-r--r--src/fe-text/mainwindows.c2
-rw-r--r--src/fe-text/textbuffer-view.c3
2 files changed, 4 insertions, 1 deletions
diff --git a/src/fe-text/mainwindows.c b/src/fe-text/mainwindows.c
index deab8de8..5f24674f 100644
--- a/src/fe-text/mainwindows.c
+++ b/src/fe-text/mainwindows.c
@@ -1214,6 +1214,8 @@ void mainwindows_redraw_dirty(void)
if (rec->dirty) {
rec->dirty = FALSE;
gui_window_redraw(rec->active);
+ } else if (WINDOW_GUI(rec->active)->view->dirty) {
+ gui_window_redraw(rec->active);
}
}
}
diff --git a/src/fe-text/textbuffer-view.c b/src/fe-text/textbuffer-view.c
index b503ec73..b7fdcb7d 100644
--- a/src/fe-text/textbuffer-view.c
+++ b/src/fe-text/textbuffer-view.c
@@ -854,7 +854,8 @@ static int view_scroll(TEXT_BUFFER_VIEW_REC *view, LINE_REC **lines,
/* do not bother with vt400 scroll
rectangles for now, redraw the
whole view */
- textbuffer_view_redraw(view);
+ view->dirty = TRUE;
+ irssi_set_dirty();
}
}
}