Fix scrolling offset of preedit window

This commit is contained in:
KENZ 2025-02-07 23:26:34 +09:00
parent 940a079d83
commit 02cbe3cbb5

View file

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