summaryrefslogtreecommitdiffstats
path: root/widget
diff options
context:
space:
mode:
authorLibravatar Héctor <hector@hecrj.dev>2025-02-11 21:02:34 +0100
committerLibravatar GitHub <noreply@github.com>2025-02-11 21:02:34 +0100
commit718d36972d7aaa44a323daf10f24294072c354b6 (patch)
tree6e28875f201f2f53a74956fd33612318dcc3bdaf /widget
parentc98f60a42ddb208f6d31f97adabb5f8cc755da67 (diff)
parent02cbe3cbb53f76f6295bb877c4444b1c10b5c930 (diff)
downloadiced-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.rs2
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;
}
}
};