mirror of
https://github.com/m1k1o/neko.git
synced 2025-08-02 00:10:07 +02:00
send keysyms in uint64
This commit is contained in:
parent
36937a0776
commit
9a6ca9b5b0
5 changed files with 44 additions and 39 deletions
|
@ -187,7 +187,7 @@ func (manager *RemoteManager) ButtonDown(code int) error {
|
|||
return xorg.ButtonDown(code)
|
||||
}
|
||||
|
||||
func (manager *RemoteManager) KeyDown(code int) error {
|
||||
func (manager *RemoteManager) KeyDown(code uint64) error {
|
||||
return xorg.KeyDown(code)
|
||||
}
|
||||
|
||||
|
@ -195,7 +195,7 @@ func (manager *RemoteManager) ButtonUp(code int) error {
|
|||
return xorg.ButtonUp(code)
|
||||
}
|
||||
|
||||
func (manager *RemoteManager) KeyUp(code int) error {
|
||||
func (manager *RemoteManager) KeyUp(code uint64) error {
|
||||
return xorg.KeyUp(code)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue