Page 1 of 1

Probleme with key

PostPosted: Sun Jun 24, 2012 20:17
by glomie
I can't write '7' in minetest, all other number key work, when try to press 7 that write
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
Could not find EKEY_CODE, using orig. X11 keycode instead: 16
Could not find EKEY_CODE, using orig. X11 keycode instead: 16

keypad work like numlock is off.
minetest installed like write here

debian 64Bits wheezy

PostPosted: Fri Jun 28, 2013 16:49
by khonkhortisan
The error you posted is directly from irrlicht.

When using the qwerty keyboard layout, numpad numbers other than 039 don't work - they are used as if numpad is off.
When using the programmer dvorak keyboard layout, the numpad has the same malfunction. Also,
} and 3 (4 and $) are interpreted as Enter (keycode 13, EKEY_CODE not found)
* and 0 (7 and &) do absolutely nothing (keycode 16, EKEY_CODE 0) in the chat box, but work in the console.

Using qwerty or programmer dvorak, this is how I would type 0123456789 using either the numpad as much as possible or as little as possible. Each k or n says to switch away from or toward using the numpad:
qwn:0k12n3k45678n9
qwk:0123456789
dwn:0k12n3k45678n9
dwn:n0k12n3k456789

PostPosted: Sun Jul 07, 2013 15:12
by glomie