fix for own mistake r41192

This commit is contained in:
Campbell Barton 2011-10-23 01:06:38 +00:00
parent d541a200c2
commit 29417887d7

@ -2616,9 +2616,7 @@ void wm_event_add_ghostevent(wmWindowManager *wm, wmWindow *win, int type, int U
/* exclude arrow keys, esc, etc from text input */ /* exclude arrow keys, esc, etc from text input */
if(type==GHOST_kEventKeyUp) { if(type==GHOST_kEventKeyUp) {
if (event.ascii<32 && event.ascii > 0) { event.ascii= '\0';
event.ascii= '\0';
}
/* ghost should do this already for key up */ /* ghost should do this already for key up */
if (event.utf8_buf[0]) { if (event.utf8_buf[0]) {
@ -2626,6 +2624,10 @@ void wm_event_add_ghostevent(wmWindowManager *wm, wmWindow *win, int type, int U
} }
event.utf8_buf[0]= '\0'; event.utf8_buf[0]= '\0';
} }
else if (event.ascii<32 && event.ascii > 0) {
event.ascii= '\0';
/* TODO. should this also zero utf8?, dont for now, campbell */
}
/* modifiers */ /* modifiers */
/* assigning both first and second is strange - campbell */ /* assigning both first and second is strange - campbell */