diff options
author | 2025-02-11 21:02:34 +0100 | |
---|---|---|
committer | 2025-02-11 21:02:34 +0100 | |
commit | 718d36972d7aaa44a323daf10f24294072c354b6 (patch) | |
tree | 6e28875f201f2f53a74956fd33612318dcc3bdaf /widget | |
parent | c98f60a42ddb208f6d31f97adabb5f8cc755da67 (diff) | |
parent | 02cbe3cbb53f76f6295bb877c4444b1c10b5c930 (diff) | |
download | iced-718d36972d7aaa44a323daf10f24294072c354b6.tar.gz iced-718d36972d7aaa44a323daf10f24294072c354b6.tar.bz2 iced-718d36972d7aaa44a323daf10f24294072c354b6.zip |
Merge pull request #2798 from kenz-gelsoft/fix_input_method_scrolling_offset
Fix the preedit text placement on scrolled content
Diffstat (limited to 'widget')
-rw-r--r-- | widget/src/scrollable.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widget/src/scrollable.rs b/widget/src/scrollable.rs index 8adf5136..fe71fd6b 100644 --- a/widget/src/scrollable.rs +++ b/widget/src/scrollable.rs @@ -753,7 +753,7 @@ where if let InputMethod::Open { position, .. } = shell.input_method_mut() { - *position = *position + translation; + *position = *position - translation; } } }; |