From 6e1f60145dbc498c6c57db34c32c48cb3e4ff028 Mon Sep 17 00:00:00 2001 From: William Wold Date: Thu, 15 Oct 2020 17:36:11 -0700 Subject: [PATCH] Set the IM context when showing the input method --- shell/platform/linux/fl_text_input_plugin.cc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/shell/platform/linux/fl_text_input_plugin.cc b/shell/platform/linux/fl_text_input_plugin.cc index 492f0ae6811fb..2841db1e79ca7 100644 --- a/shell/platform/linux/fl_text_input_plugin.cc +++ b/shell/platform/linux/fl_text_input_plugin.cc @@ -258,6 +258,11 @@ static FlMethodResponse* set_client(FlTextInputPlugin* self, FlValue* args) { // Shows the input method. static FlMethodResponse* show(FlTextInputPlugin* self) { + // Set the top-level window used for system input method windows. + GdkWindow* window = + gtk_widget_get_window(gtk_widget_get_toplevel(GTK_WIDGET(self->view))); + gtk_im_context_set_client_window(self->im_context, window); + gtk_im_context_focus_in(self->im_context); return FL_METHOD_RESPONSE(fl_method_success_response_new(nullptr));