Complete.Org: Mailing Lists: Archives: freeciv-dev: December 2004:
[Freeciv-Dev] (PR#11526) xaw: menu descriptions for shortkeys
Home

[Freeciv-Dev] (PR#11526) xaw: menu descriptions for shortkeys

[Top] [All Lists]

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index] [Thread Index]
Subject: [Freeciv-Dev] (PR#11526) xaw: menu descriptions for shortkeys
From: "Christian Knoke" <chrisk@xxxxxxxxx>
Date: Wed, 15 Dec 2004 00:47:37 -0800
Reply-to: bugs@xxxxxxxxxxx

<URL: http://bugs.freeciv.org/Ticket/Display.html?id=11526 >


CVS 15 DEC 2004 S2 XAW3D

The shortkeys for un/load a wrong. 'l' and 'L' and 'u' and 'U' are
exchanged.

Patch attached.

Christian

-- 
Christian Knoke            * * *            http://cknoke.de
* * * * * * * * *  Ceterum censeo Microsoft esse dividendum.

--- client/gui-xaw/menu.c.orig  2004-12-15 09:46:15.000000000 +0100
+++ client/gui-xaw/menu.c       2004-12-15 09:47:03.000000000 +0100
@@ -183,10 +183,10 @@
     { { N_("Pillage"), 0              },     "P", MENU_ORDER_PILLAGE, 0 },
     { { 0                             },      "", MENU_SEPARATOR_LINE, 0 },
     { { N_("Make Homecity"), 0        },     "h", MENU_ORDER_HOMECITY, 0 },
-    { { N_("Unload Transporter"), 0 }, "u",
+    { { N_("Unload Transporter"), 0 }, "U",
       MENU_ORDER_UNLOAD_TRANSPORTER, 0 },
-    { { N_("Load"), 0 }, "L", MENU_ORDER_LOAD, 0 },
-    { { N_("Unload"), 0 }, "U", MENU_ORDER_UNLOAD, 0 },
+    { { N_("Load"), 0 }, "l", MENU_ORDER_LOAD, 0 },
+    { { N_("Unload"), 0 }, "u", MENU_ORDER_UNLOAD, 0 },
     { { N_("Wake up others"), 0       },     "W", MENU_ORDER_WAKEUP_OTHERS, 0 
},
     { { 0                             },      "", MENU_SEPARATOR_LINE, 0 },
     { { N_("Auto Settler"), 0         },     "a", MENU_ORDER_AUTO_SETTLER, 0 },
@@ -197,7 +197,7 @@
     { { N_("Connect/Irrigation"), 0   }, "ctl-I", MENU_ORDER_CONNECT_IRRIGATE, 
0 },
     { { N_("Patrol"), 0               },     "q", MENU_ORDER_PATROL, 0 },
     { { N_("Go to"), 0                },     "g", MENU_ORDER_GOTO, 0 },
-    { { N_("Go/Airlift to City"), 0   },     "l", MENU_ORDER_GOTO_CITY, 0 },
+    { { N_("Go/Airlift to City"), 0   },     "L", MENU_ORDER_GOTO_CITY, 0 },
     { { N_("Return to nearest city"), 0 },    "", MENU_ORDER_RETURN, 0 },
     { { 0                             },      "", MENU_SEPARATOR_LINE, 0 },
     { { N_("Disband Unit"), 0         },     "D", MENU_ORDER_DISBAND, 0 },

[Prev in Thread] Current Thread [Next in Thread]
  • [Freeciv-Dev] (PR#11526) xaw: menu descriptions for shortkeys, Christian Knoke <=