diff options
author | Friedel Wolff <[email protected]> | 2011-08-31 12:26:02 +0200 |
---|---|---|
committer | Sorokin Alexei <[email protected]> | 2016-03-07 00:42:45 +0300 |
commit | 087b25e1c35659f28e85e464e99a6970eba97dff (patch) | |
tree | 1c1d2d2f49cb4afb16fac2f62a5e87f364a0f644 /src/terminal-options.c | |
parent | 4eef53542aef3be87f0287e8ee9a26ecb58036f9 (diff) | |
download | mate-terminal-087b25e1c35659f28e85e464e99a6970eba97dff.tar.bz2 mate-terminal-087b25e1c35659f28e85e464e99a6970eba97dff.tar.xz |
Fix incorrect ordering of COLS and ROWS
https://bugzilla.gnome.org/show_bug.cgi?id=649023
Diffstat (limited to 'src/terminal-options.c')
-rw-r--r-- | src/terminal-options.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/terminal-options.c b/src/terminal-options.c index ce41055..9d8c1e1 100644 --- a/src/terminal-options.c +++ b/src/terminal-options.c @@ -1043,7 +1043,7 @@ get_goption_context (TerminalOptions *options) 0, G_OPTION_ARG_CALLBACK, option_geometry_callback, - N_("Set the window size; for example: 80x24, or 80x24+200+200 (ROWSxCOLS+X+Y)"), + N_("Set the window size; for example: 80x24, or 80x24+200+200 (COLSxROWS+X+Y)"), N_("GEOMETRY") }, { |