Workaround for KDE glitch

Passing the epoch time as part of generating an event in KDE appears to cause windows to become unmoveable.  Not sending the epoch time fixes this and does not appear to have any side effects
This commit is contained in:
Duncan Ferguson 2015-11-09 23:08:51 +00:00
parent 0358721c67
commit 3f79f1ff54
2 changed files with 1 additions and 2 deletions

View file

@ -584,7 +584,6 @@ sub send_text($@) {
'name' => $event,
'detail' => $code,
'state' => $state,
'time' => time(),
'event' => $servers{$svr}{wid},
'root' => $xdisplay->root(),
'same_screen' => 1,
@ -1754,7 +1753,6 @@ sub key_event {
'name' => $event,
'detail' => $keycode,
'state' => $state,
'time' => time(),
'event' => $servers{$_}{wid},
'root' => $xdisplay->root(),
'same_screen' => 1,