NeoLayoutViewer/csrc
Olaf Schulz 7cf5e02407 Fix issue in keysend (c function).
The issue was: Keys like XK_Backspace and XK_Enter sends the wrong keys.
Reason: gdk_keymap_get_entries_for_keyval return multiple combinations
of keycodes, i.e XK_Enter returns
(key=36, modifier=0) [Enter], [Mod4]+p,
(key=55, modifier=32) [Mod4]+p,
(key=55, modifier=33) [Mod4]+[Shift]+p

The latest version is returned, but collides with this 'bugfix':
'if( keymod.modifiers == 33 ) keymod.modifiers = 0;'

Solution:
Return first version (36, 0). Moreover the 'bugfix' is commented out,
but this had to recheck on several systems.
2017-11-17 17:19:25 +01:00
..
checkModifier.c Move source code to folders src and csrc 2011-10-16 20:52:57 +02:00
keysend.c Fix issue in keysend (c function). 2017-11-17 17:19:25 +01:00
keysend.h Update README and install instructions. Fix compiling error for older vala versions <0.16 2013-09-17 22:59:44 +02:00