summaryrefslogtreecommitdiffstats
path: root/core/src/shell.rs
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 /core/src/shell.rs
parentae10adda74320e8098bfeb401f12a278e1e7b3e2 (diff)
downloadiced-db990b77e4aa8d001c774703301342c951d6caaa.tar.gz
iced-db990b77e4aa8d001c774703301342c951d6caaa.tar.bz2
iced-db990b77e4aa8d001c774703301342c951d6caaa.zip
Add neutral `None` variant to `InputMethod`
Diffstat (limited to 'core/src/shell.rs')
-rw-r--r--core/src/shell.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/shell.rs b/core/src/shell.rs
index e87d1696..d01233c7 100644
--- a/core/src/shell.rs
+++ b/core/src/shell.rs
@@ -27,7 +27,7 @@ impl<'a, Message> Shell<'a, Message> {
redraw_request: window::RedrawRequest::Wait,
is_layout_invalid: false,
are_widgets_invalid: false,
- input_method: InputMethod::Disabled,
+ input_method: InputMethod::None,
}
}