From b50c050613d488d507d6d4c8ff4b865db476d384 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Wed, 23 Apr 2014 18:43:46 -0400 Subject: reset the scroll region whenever the window is resized seems like this is what other terminals do --- src/term.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src/term.c') diff --git a/src/term.c b/src/term.c index 70b0df6..6ada412 100644 --- a/src/term.c +++ b/src/term.c @@ -12,11 +12,6 @@ void runes_term_init(RunesTerm *t, int argc, char *argv[]) runes_display_set_window_size(t); - /* have to initialize these here instead of in display_init because they - * depend on the window size being set */ - t->scroll_top = 0; - t->scroll_bottom = t->rows - 1; - t->loop = uv_default_loop(); runes_window_backend_start_loop(t); runes_pty_backend_start_loop(t); -- cgit v1.2.3-54-g00ecf