Skip to content

Commit bbc6414

Browse files
committed
Fix the preedit text placement on scrolled content
- backports iced-rs#2785
1 parent cf5ed2c commit bbc6414

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

widget/src/scrollable.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -816,7 +816,7 @@ where
816816
if let InputMethod::Open { position, .. } =
817817
shell.input_method_mut()
818818
{
819-
*position = *position + translation;
819+
*position = *position - translation;
820820
}
821821
}
822822

0 commit comments

Comments
 (0)