From 740f2ef26b1987b3b3aee89e9f31ecef90279776 Mon Sep 17 00:00:00 2001 From: simon Date: Wed, 6 Mar 2002 23:06:07 +0000 Subject: [PATCH] Oops. I wrote in the docs that no-remote-resize also included no-remote-move-window, so I'd better live up to that... git-svn-id: svn://svn.tartarus.org/sgt/putty@1577 cda61777-01e9-0310-a592-d414129be87e --- terminal.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/terminal.c b/terminal.c index a322debd..8afb98b8 100644 --- a/terminal.c +++ b/terminal.c @@ -2014,8 +2014,9 @@ void term_out(void) break; case 3: if (esc_nargs >= 3) { - move_window(def(esc_args[1], 0), - def(esc_args[2], 0)); + if (!cfg.no_remote_resize) + move_window(def(esc_args[1], 0), + def(esc_args[2], 0)); } break; case 4: -- 2.11.0