1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-04-11 08:08:06 -05:00

Swap order of Columns' and Rows' in the config dialog, to make it

consistent with sizetip.c (and more nebulous conventions).

[originally from svn r7196]
This commit is contained in:
Jacob Nevins 2007-02-01 23:24:30 +00:00
parent b5df0a7732
commit 0f366c32bb
2 changed files with 5 additions and 5 deletions

View File

@ -1399,13 +1399,13 @@ void setup_config_box(struct controlbox *b, int midsession,
s = ctrl_getset(b, "Window", "size", "Set the size of the window");
ctrl_columns(s, 2, 50, 50);
c = ctrl_editbox(s, "Rows", 'r', 100,
HELPCTX(window_size),
dlg_stdeditbox_handler, I(offsetof(Config,height)),I(-1));
c->generic.column = 0;
c = ctrl_editbox(s, "Columns", 'm', 100,
HELPCTX(window_size),
dlg_stdeditbox_handler, I(offsetof(Config,width)), I(-1));
c->generic.column = 0;
c = ctrl_editbox(s, "Rows", 'r', 100,
HELPCTX(window_size),
dlg_stdeditbox_handler, I(offsetof(Config,height)),I(-1));
c->generic.column = 1;
ctrl_columns(s, 1, 100);

View File

@ -1003,7 +1003,7 @@ The Window configuration panel allows you to control aspects of the
\cfg{winhelp-topic}{window.size}
The \q{\ii{Rows}} and \q{\ii{Columns}} boxes let you set the PuTTY
The \q{\ii{Columns}} and \q{\ii{Rows}} boxes let you set the PuTTY
window to a precise size. Of course you can also \I{window resizing}drag
the window to a new size while a session is running.