summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Garnacho <carlosg@gnome.org>2022-09-06 21:53:25 +0200
committermsizanoen1 <msizanoen@qtmlabs.xyz>2022-10-06 17:29:50 +0700
commit018083fab7fb588a5700540b1ee3ff3b5af6a0bd (patch)
tree7caa149fd0ffd64ccf7d70e5d2087d18dda062ab
parentfa6aca2925eadb341b7d03d0cee22d452cb64951 (diff)
downloadgtk+-018083fab7fb588a5700540b1ee3ff3b5af6a0bd.tar.gz
gtkentry: Also reset IM context after IM surrounding text deletion
When the IM commands the GtkText to delete text, the cursor position would change, and so would the surrounding text. Reset the IM context so that these updates are properly picked up by the IM. Fixes backspace key behavior in the GNOME Shell OSK, since that relies on the surrounding text being properly updated for the next iteration.
-rw-r--r--gtk/gtkentry.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/gtk/gtkentry.c b/gtk/gtkentry.c
index f8050df565..7da9f80796 100644
--- a/gtk/gtkentry.c
+++ b/gtk/gtkentry.c
@@ -6137,9 +6137,12 @@ gtk_entry_delete_surrounding_cb (GtkIMContext *slave,
GtkEntryPrivate *priv = entry->priv;
if (priv->editable)
- gtk_editable_delete_text (GTK_EDITABLE (entry),
- priv->current_pos + offset,
- priv->current_pos + offset + n_chars);
+ {
+ gtk_editable_delete_text (GTK_EDITABLE (entry),
+ priv->current_pos + offset,
+ priv->current_pos + offset + n_chars);
+ gtk_im_context_reset (slave);
+ }
return TRUE;
}