From a1659af647d071828022a0c0f30ee975f363b26c Mon Sep 17 00:00:00 2001 From: jacob Date: Sun, 17 Jul 2011 22:35:08 +0000 Subject: [PATCH] Fix a typo in r9214 that plausibly explains a resizing weirdness I had with today's snapshot on Windows. git-svn-id: svn://svn.tartarus.org/sgt/putty@9230 cda61777-01e9-0310-a592-d414129be87e --- windows/window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/window.c b/windows/window.c index da0d3d48..102c470d 100644 --- a/windows/window.c +++ b/windows/window.c @@ -2934,7 +2934,7 @@ static LRESULT CALLBACK WndProc(HWND hwnd, UINT message, */ need_backend_resize = TRUE; conf_set_int(conf, CONF_height, h); - conf_set_int(conf, CONF_height, w); + conf_set_int(conf, CONF_width, w); } else { term_size(term, h, w, conf_get_int(conf, CONF_savelines)); } -- 2.11.0