|
From: Crossfire C. r. messages.
<cro...@li...> - 2009-05-25 20:09:30
|
Revision: 11722
http://crossfire.svn.sourceforge.net/crossfire/?rev=11722&view=rev
Author: akirschbaum
Date: 2009-05-25 20:09:19 +0000 (Mon, 25 May 2009)
Log Message:
-----------
Disable per-dialog key bindings of cursor keys in inventory dialog. Now the character may move around while the inventory dialog is open.
Modified Paths:
--------------
jxclient/trunk/ChangeLog
jxclient/trunk/skins/ragnorok/inventory.skin
Modified: jxclient/trunk/ChangeLog
===================================================================
--- jxclient/trunk/ChangeLog 2009-05-25 20:03:51 UTC (rev 11721)
+++ jxclient/trunk/ChangeLog 2009-05-25 20:09:19 UTC (rev 11722)
@@ -1,5 +1,8 @@
2009-05-25 Andreas Kirschbaum
+ * Disable per-dialog key bindings of cursor keys in inventory dialog. Now the
+ character may move around while the inventory dialog is open.
+
* Make login/logout messages darker to improve readability.
* Do not write invalid keybindings files.
Modified: jxclient/trunk/skins/ragnorok/inventory.skin
===================================================================
--- jxclient/trunk/skins/ragnorok/inventory.skin 2009-05-25 20:03:51 UTC (rev 11721)
+++ jxclient/trunk/skins/ragnorok/inventory.skin 2009-05-25 20:09:19 UTC (rev 11722)
@@ -31,14 +31,16 @@
label_text label_weight_sep 99 30+136 6 16 font_label BLACK /
label_stat label_weight_limit 105 30+136 45 16 font_label BLACK WEIGHT_LIMIT LEFT
-key code UP 0 exec command_inventory_up
-key code KP_UP 0 exec command_inventory_up
-key code DOWN 0 exec command_inventory_down
-key code KP_DOWN 0 exec command_inventory_down
-key code LEFT 0 exec command_inventory_prev
-key code KP_LEFT 0 exec command_inventory_prev
-key code RIGHT 0 exec command_inventory_next
-key code KP_RIGHT 0 exec command_inventory_next
+# Cursor keys disabled for now because players want to move around while
+# inventory is open.
+#key code UP 0 exec command_inventory_up
+#key code KP_UP 0 exec command_inventory_up
+#key code DOWN 0 exec command_inventory_down
+#key code KP_DOWN 0 exec command_inventory_down
+#key code LEFT 0 exec command_inventory_prev
+#key code KP_LEFT 0 exec command_inventory_prev
+#key code RIGHT 0 exec command_inventory_next
+#key code KP_RIGHT 0 exec command_inventory_next
key code PAGE_UP 0 exec command_inventory_pageup
key code PAGE_DOWN 0 exec command_inventory_pagedown
key char 10 exec command_inventory_apply
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|