Re: [Spice-devel] [spice-gtk 3/3] Send key release event for some keys in JP keyboard.

2016-04-05 Thread Takao Fujiwara
On 03/31/16 22:36, Frediano Ziglio-san wrote: --- a/src/spice-widget.c +++ b/src/spice-widget.c @@ -1493,6 +1493,15 @@ static gboolean key_event(GtkWidget *widget, GdkEventKey *key) } } break; +case 0x412: /* KR keyboard */ +if

Re: [Spice-devel] [spice-gtk 3/3] Send key release event for some keys in JP keyboard.

2016-03-31 Thread Frediano Ziglio
> > From: Takao Fujiwara > > Some of the keys in JP keyboard do no send WM_KEYUP and it causes > unlimited key events on Linux desktop. This sends the virtual > key release events to avoid the desktop hangup. > --- > src/spice-widget.c | 9 + > 1 file changed, 9 insertions(+) > > diff

[Spice-devel] [spice-gtk 3/3] Send key release event for some keys in JP keyboard.

2016-03-31 Thread Fabiano FidĂȘncio
From: Takao Fujiwara Some of the keys in JP keyboard do no send WM_KEYUP and it causes unlimited key events on Linux desktop. This sends the virtual key release events to avoid the desktop hangup. --- src/spice-widget.c | 9 + 1 file changed, 9 insertions(+) diff --git a/src/spice-widge