summaryrefslogtreecommitdiffstats
path: root/widget
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-02-03 17:12:08 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-02-03 17:12:08 +0100
commit141290c7402a4e087ce18d60b210f4feeafcebee (patch)
treee3225f5b2eada0c35156dbf5eef53f034e56f37c /widget
parente8c680ce66b6b766a196e799b209e73e0bf416ab (diff)
downloadiced-141290c7402a4e087ce18d60b210f4feeafcebee.tar.gz
iced-141290c7402a4e087ce18d60b210f4feeafcebee.tar.bz2
iced-141290c7402a4e087ce18d60b210f4feeafcebee.zip
Fix `InputMethod` conflicts with multiple scrollables
Diffstat (limited to 'widget')
-rw-r--r--widget/src/scrollable.rs12
1 files changed, 8 insertions, 4 deletions
diff --git a/widget/src/scrollable.rs b/widget/src/scrollable.rs
index 0a93584e..053b7df6 100644
--- a/widget/src/scrollable.rs
+++ b/widget/src/scrollable.rs
@@ -727,6 +727,8 @@ where
_ => mouse::Cursor::Unavailable,
};
+ let had_input_method = shell.input_method().is_open();
+
let translation =
state.translation(self.direction, bounds, content_bounds);
@@ -745,10 +747,12 @@ where
},
);
- if let InputMethod::Open { position, .. } =
- shell.input_method_mut()
- {
- *position = *position + translation;
+ if !had_input_method {
+ if let InputMethod::Open { position, .. } =
+ shell.input_method_mut()
+ {
+ *position = *position + translation;
+ }
}
};