summaryrefslogtreecommitdiffstats
path: root/widget/src/text_editor.rs
diff options
context:
space:
mode:
Diffstat (limited to 'widget/src/text_editor.rs')
-rw-r--r--widget/src/text_editor.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/widget/src/text_editor.rs b/widget/src/text_editor.rs
index 26d05ccd..486741c6 100644
--- a/widget/src/text_editor.rs
+++ b/widget/src/text_editor.rs
@@ -754,6 +754,8 @@ where
Ime::Toggle(is_open) => {
state.preedit =
is_open.then(input_method::Preedit::new);
+
+ shell.request_redraw();
}
Ime::Preedit { content, selection } => {
if state.focus.is_some() {
@@ -761,6 +763,8 @@ where
content,
selection,
});
+
+ shell.request_redraw();
}
}
Ime::Commit(text) => {