mirror of
https://github.com/emilk/egui.git
synced 2026-09-02 06:40:06 -04:00
Merge branch 'master' of https://github.com/emilk/egui into multiples_viewports
This commit is contained in:
@@ -340,7 +340,7 @@ impl State {
|
||||
.events
|
||||
.push(egui::Event::CompositionEnd(text.clone()));
|
||||
}
|
||||
winit::event::Ime::Preedit(text, ..) => {
|
||||
winit::event::Ime::Preedit(text, Some(_)) => {
|
||||
if !self.input_method_editor_started {
|
||||
self.input_method_editor_started = true;
|
||||
self.egui_input.events.push(egui::Event::CompositionStart);
|
||||
@@ -349,6 +349,7 @@ impl State {
|
||||
.events
|
||||
.push(egui::Event::CompositionUpdate(text.clone()));
|
||||
}
|
||||
winit::event::Ime::Preedit(_, None) => {}
|
||||
};
|
||||
|
||||
EventResponse {
|
||||
|
||||
Reference in New Issue
Block a user