We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bd6aea commit 9f898e9Copy full SHA for 9f898e9
shell/platform/linux/fl_text_input_plugin.cc
@@ -288,6 +288,10 @@ FlTextInputPlugin* fl_text_input_plugin_new(FlBinaryMessenger* messenger) {
288
gboolean fl_text_input_plugin_filter_keypress(FlTextInputPlugin* self,
289
GdkEventKey* event) {
290
g_return_val_if_fail(FL_IS_TEXT_INPUT_PLUGIN(self), FALSE);
291
+
292
+ if (self->client_id == kClientIdUnset)
293
+ return FALSE;
294
295
if (gtk_im_context_filter_keypress(self->im_context, event))
296
return TRUE;
297
0 commit comments