Skip to content

Commit

Permalink
Fix the preedit text placement on scrolled content
Browse files Browse the repository at this point in the history
- backports iced-rs#2785
  • Loading branch information
kenz-gelsoft committed Feb 11, 2025
1 parent cf5ed2c commit bbc6414
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion widget/src/scrollable.rs
Original file line number Diff line number Diff line change
Expand Up @@ -816,7 +816,7 @@ where
if let InputMethod::Open { position, .. } =
shell.input_method_mut()
{
*position = *position + translation;
*position = *position - translation;
}
}

Expand Down

0 comments on commit bbc6414

Please sign in to comment.