fix case in x11
parent
484f765566
commit
ee25d53bbd
|
|
@ -52,20 +52,20 @@ GENERIC: client-event ( event window -- )
|
||||||
|
|
||||||
: handle-event ( event window -- )
|
: handle-event ( event window -- )
|
||||||
over XAnyEvent-type {
|
over XAnyEvent-type {
|
||||||
{ \ Expose [ expose-event ] }
|
{ Expose [ expose-event ] }
|
||||||
{ \ ConfigureNotify [ configure-event ] }
|
{ ConfigureNotify [ configure-event ] }
|
||||||
{ \ ButtonPress [ button-down-event$ ] }
|
{ ButtonPress [ button-down-event$ ] }
|
||||||
{ \ ButtonRelease [ button-up-event$ ] }
|
{ ButtonRelease [ button-up-event$ ] }
|
||||||
{ \ EnterNotify [ enter-event ] }
|
{ EnterNotify [ enter-event ] }
|
||||||
{ \ LeaveNotify [ leave-event ] }
|
{ LeaveNotify [ leave-event ] }
|
||||||
{ \ MotionNotify [ motion-event ] }
|
{ MotionNotify [ motion-event ] }
|
||||||
{ \ KeyPress [ key-down-event ] }
|
{ KeyPress [ key-down-event ] }
|
||||||
{ \ KeyRelease [ key-up-event ] }
|
{ KeyRelease [ key-up-event ] }
|
||||||
{ \ FocusIn [ focus-in-event ] }
|
{ FocusIn [ focus-in-event ] }
|
||||||
{ \ FocusOut [ focus-out-event ] }
|
{ FocusOut [ focus-out-event ] }
|
||||||
{ \ SelectionNotify [ selection-notify-event ] }
|
{ SelectionNotify [ selection-notify-event ] }
|
||||||
{ \ SelectionRequest [ selection-request-event ] }
|
{ SelectionRequest [ selection-request-event ] }
|
||||||
{ \ ClientMessage [ client-event ] }
|
{ ClientMessage [ client-event ] }
|
||||||
[ 3drop ]
|
[ 3drop ]
|
||||||
} case ;
|
} case ;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue