allow keypress propagation

- this allows the webkit to add values to the `input` when typed
FIXME: does this need to be configurable?
This commit is contained in:
Travis McLane 2024-03-07 09:03:47 -06:00
commit 4b2189ba51

View file

@ -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) {