From 7ea0601fc6584ba2c03f29ebff42ca424d183775 Mon Sep 17 00:00:00 2001 From: Travis McLane Date: Thu, 2 May 2024 11:02:21 -0500 Subject: [PATCH] remove Println unknown key codes shouldn't print out to stdout --- v3/pkg/application/linux_cgo.go | 1 - 1 file changed, 1 deletion(-) diff --git a/v3/pkg/application/linux_cgo.go b/v3/pkg/application/linux_cgo.go index 9696070da..ccec7a28c 100644 --- a/v3/pkg/application/linux_cgo.go +++ b/v3/pkg/application/linux_cgo.go @@ -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