From 6090b1c5a729df9e091d8e368c9d6a3687a27836 Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Wed, 1 Dec 2010 13:18:24 +0000 Subject: Bugfix #24903 GRLESS key was missing in RNA key list, so it didn't show up in keymap editor. Internally support for it worked already. Thanks to Milos Zajic for showing the fix. --- source/blender/makesrna/intern/rna_wm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/makesrna/intern/rna_wm.c') diff --git a/source/blender/makesrna/intern/rna_wm.c b/source/blender/makesrna/intern/rna_wm.c index 1c490e7951e..86ad964247f 100644 --- a/source/blender/makesrna/intern/rna_wm.c +++ b/source/blender/makesrna/intern/rna_wm.c @@ -101,7 +101,7 @@ EnumPropertyItem event_timer_type_items[]= { {TIMER2, "TIMER2", 0, "Timer 2", ""}, {0, NULL, 0, NULL, NULL}}; -/* not returned: CAPSLOCKKEY, UNKNOWNKEY, GRLESSKEY */ +/* not returned: CAPSLOCKKEY, UNKNOWNKEY */ EnumPropertyItem event_type_items[] = { {0, "NONE", 0, "", ""}, @@ -176,7 +176,7 @@ EnumPropertyItem event_type_items[] = { {RIGHTSHIFTKEY, "RIGHT_SHIFT", 0, "Right Shift", ""}, {0, "", 0, NULL, NULL}, {OSKEY, "OSKEY", 0, "OS Key", ""}, - {0, "", 0, NULL, NULL}, + {GRLESSKEY, "GRLESS", 0, "Grless", ""}, {ESCKEY, "ESC", 0, "Esc", ""}, {TABKEY, "TAB", 0, "Tab", ""}, {RETKEY, "RET", 0, "Return", ""}, -- cgit v1.2.3