1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-03-12 18:13:50 -05:00

Fix a typo in r9214 that plausibly explains a resizing weirdness I had with

today's snapshot on Windows.

[originally from svn r9230]
[r9214 == a1f3b7a358adaa7c2a98359cd0373aa823eeb14b]
This commit is contained in:
Jacob Nevins 2011-07-17 22:35:08 +00:00
parent bd60f2fc5b
commit fadbd546fc

View File

@ -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));
}