remove Println

unknown key codes shouldn't print out to stdout
This commit is contained in:
Travis McLane 2024-05-02 11:02:21 -05:00
commit 7ea0601fc6

View file

@ -1446,7 +1446,6 @@ func getKeyboardState(event *C.GdkEventKey) (string, bool) {
}
keyString, ok := VirtualKeyCodes[keyCode]
if !ok {
fmt.Println("Error Could not find key code: ", keyCode)
return "", false
}
acc.Key = keyString