From 4b2189ba51973b74ad5c2d3b620909bb65b945b8 Mon Sep 17 00:00:00 2001 From: Travis McLane Date: Thu, 7 Mar 2024 09:03:47 -0600 Subject: [PATCH] allow keypress propagation - this allows the webkit to add values to the `input` when typed FIXME: does this need to be configurable? --- v3/pkg/application/linux_cgo.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v3/pkg/application/linux_cgo.go b/v3/pkg/application/linux_cgo.go index 96e130d04..a7ce902ae 100644 --- a/v3/pkg/application/linux_cgo.go +++ b/v3/pkg/application/linux_cgo.go @@ -1353,7 +1353,7 @@ func onKeyPressEvent(widget *C.GtkWidget, event *C.GdkEventKey, userData C.uintp acceleratorString: accelerator, } } - return C.gboolean(1) + return C.gboolean(0) } func getKeyboardState(event *C.GdkEventKey) (string, bool) {