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:
parent
b5df0a7732
commit
0f366c32bb
8
config.c
8
config.c
@ -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);
|
||||
|
||||
|
@ -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.
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user