Merge branch 'guacamole-kbd' of github.com:m1k1o/neko into kbd-modifier-state-sync

This commit is contained in:
m1k1o
2020-06-21 03:09:53 +02:00
6 changed files with 8 additions and 8 deletions

View File

@ -211,7 +211,7 @@ func GetScreenSize() *types.ScreenSize {
return nil
}
func SetKeyboard(layout string) {
func SetKeyboardLayout(layout string) {
mu.Lock()
defer mu.Unlock()
@ -222,7 +222,7 @@ func SetKeyboard(layout string) {
layoutUnsafe := C.CString(layout)
defer C.free(unsafe.Pointer(layoutUnsafe))
C.SetKeyboard(layoutUnsafe)
C.SetKeyboardLayout(layoutUnsafe)
}
func SetKeyboardModifiers(num_lock int, caps_lock int, scroll_lock int) {