diff --git a/crates/egui-winit/src/lib.rs b/crates/egui-winit/src/lib.rs index 6b6290161a7f..c416e658c638 100644 --- a/crates/egui-winit/src/lib.rs +++ b/crates/egui-winit/src/lib.rs @@ -177,12 +177,12 @@ impl State { &mut self.clipboard } - /// Returns whether the window should get IME events. + /// Returns [`false`] or the last value that [`Window::set_ime_allowed()`] was called with, used for debouncing. pub fn allow_ime(&self) -> bool { self.allow_ime } - /// Returns whether the window should get IME events. + /// Returns [`false`] or the last value that [`Window::set_ime_allowed()`] was called with, used for debouncing. pub fn allow_ime_mut(&mut self) -> &mut bool { &mut self.allow_ime }