From 4dee43aa5c460850268c1acea263d4ff510e7c15 Mon Sep 17 00:00:00 2001 From: Jaakko Keränen Date: Tue, 14 Dec 2021 21:43:08 +0200 Subject: iOS: Fixed input positioning (non-animated widget) If there were no entry animation, the native UI control would not be correctly placed. --- src/ui/root.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ui/root.c') diff --git a/src/ui/root.c b/src/ui/root.c index a9bc7feb..04586bac 100644 --- a/src/ui/root.c +++ b/src/ui/root.c @@ -688,7 +688,7 @@ void updateToolbarColors_Root(iRoot *d) { } void notifyVisualOffsetChange_Root(iRoot *d) { - if (d && (d->didAnimateVisualOffsets || d->didOverflowScroll)) { + if (d && (d->didAnimateVisualOffsets || d->didChangeArrangement)) { iNotifyAudience(d, visualOffsetsChanged, RootVisualOffsetsChanged); } } -- cgit v1.2.3