summaryrefslogtreecommitdiffstats
path: root/winit
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-02-02 21:06:50 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-02-02 21:06:50 +0100
commitdb990b77e4aa8d001c774703301342c951d6caaa (patch)
tree5fe6d046fa17c0a99438fbde7b8e748c8941afca /winit
parentae10adda74320e8098bfeb401f12a278e1e7b3e2 (diff)
downloadiced-db990b77e4aa8d001c774703301342c951d6caaa.tar.gz
iced-db990b77e4aa8d001c774703301342c951d6caaa.tar.bz2
iced-db990b77e4aa8d001c774703301342c951d6caaa.zip
Add neutral `None` variant to `InputMethod`
Diffstat (limited to 'winit')
-rw-r--r--winit/src/program/window_manager.rs11
1 files changed, 7 insertions, 4 deletions
diff --git a/winit/src/program/window_manager.rs b/winit/src/program/window_manager.rs
index cd49a8b4..32faa059 100644
--- a/winit/src/program/window_manager.rs
+++ b/winit/src/program/window_manager.rs
@@ -203,10 +203,13 @@ where
}
pub fn request_input_method(&mut self, input_method: InputMethod) {
- self.raw.set_ime_allowed(match input_method {
- InputMethod::Disabled => false,
- InputMethod::Allowed | InputMethod::Open { .. } => true,
- });
+ match input_method {
+ InputMethod::None => {}
+ InputMethod::Disabled => self.raw.set_ime_allowed(false),
+ InputMethod::Allowed | InputMethod::Open { .. } => {
+ self.raw.set_ime_allowed(true)
+ }
+ }
if let InputMethod::Open {
position,