Skip to content

Commit

Permalink
remove Println
Browse files Browse the repository at this point in the history
unknown key codes shouldn't print out to stdout
  • Loading branch information
tmclane committed May 2, 2024
1 parent 99537f2 commit 7ea0601
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion v3/pkg/application/linux_cgo.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7ea0601

Please sign in to comment.