mirror of
https://github.com/m1k1o/neko.git
synced 2025-08-01 07:49:53 +02:00
fix typos
This commit is contained in:
parent
0ecf669077
commit
17ad17dd42
2 changed files with 2 additions and 8 deletions
|
@ -32,12 +32,6 @@ func New(config *config.Remote) *RemoteManager {
|
|||
emmiter: events.New(),
|
||||
config: config,
|
||||
streaming: false,
|
||||
|
||||
keyboardModifierState: {
|
||||
CapsLock: false,
|
||||
NumLock: false,
|
||||
ScrollLock: false,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -229,6 +223,6 @@ func (manager *RemoteManager) SetKeyboard(layout string) {
|
|||
xorg.SetKeyboard(layout)
|
||||
}
|
||||
|
||||
func (manager *RemoteManager) SetKeyboard(NumLock int, CapsLock int, ScrollLock int) {
|
||||
func (manager *RemoteManager) SetKeyboardModifiers(NumLock int, CapsLock int, ScrollLock int) {
|
||||
xorg.SetKeyboardModifiers(NumLock, CapsLock, ScrollLock)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue