Skip to content

Commit

Permalink
Added push of CompositionUpdate event.
Browse files Browse the repository at this point in the history
  • Loading branch information
EReeves committed Oct 7, 2023
1 parent 79fed9b commit 40e4236
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/systems.rs
Original file line number Diff line number Diff line change
Expand Up @@ -247,9 +247,12 @@ pub fn process_input_system(
match ev {
Ime::Preedit {
window,
value: _,
value,
cursor: _,
} => push_ime_event(&mut context_params, window, egui::Event::CompositionStart),
} => {
push_ime_event(&mut context_params, window, egui::Event::CompositionStart);
push_ime_event(&mut context_params, window, egui::Event::CompositionUpdate(value.clone()));
},
Ime::Commit { window, value } => push_ime_event(
&mut context_params,
window,
Expand Down

0 comments on commit 40e4236

Please sign in to comment.