Merge pull request #2798 from kenz-gelsoft/fix_input_method_scrolling_offset

Fix the preedit text placement on scrolled content
This commit is contained in:
Héctor 2025-02-11 21:02:34 +01:00 committed by GitHub
commit 718d36972d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -753,7 +753,7 @@ where
if let InputMethod::Open { position, .. } = if let InputMethod::Open { position, .. } =
shell.input_method_mut() shell.input_method_mut()
{ {
*position = *position + translation; *position = *position - translation;
} }
} }
}; };