From a9b6ceb700cfcfad4ef153b8c5b218602c1153b3 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Sat, 12 Apr 2003 10:44:14 +0000 Subject: [PATCH] Mid-session reconfiguration of scrollback was failing (in Unix) except when width or height had _also_ been changed. Fixed. [originally from svn r3108] --- unix/pterm.c | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/unix/pterm.c b/unix/pterm.c index 568f5173..813b1574 100644 --- a/unix/pterm.c +++ b/unix/pterm.c @@ -2519,7 +2519,18 @@ void change_settings_menuitem(GtkMenuItem *item, gpointer data) oldcfg.window_border != cfg2.window_border || need_size) { set_geom_hints(inst); request_resize(inst, cfg2.width, cfg2.height); - } + } else { + /* + * The above will have caused a call to term_size() for + * us if it happened. If the user has fiddled with only + * the scrollback size, the above will not have + * happened and we will need an explicit term_size() + * here. + */ + if (oldcfg.savelines != cfg2.savelines) + term_size(inst->term, inst->term->rows, inst->term->cols, + cfg2.savelines); + } term_invalidate(inst->term); }