summaryrefslogtreecommitdiff
path: root/src/ui/root.c
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-12-14 21:43:08 +0200
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-12-14 21:43:08 +0200
commit4dee43aa5c460850268c1acea263d4ff510e7c15 (patch)
treeb5ede4d06ca9cb17cc566acb1a999a6c1edc2ea5 /src/ui/root.c
parent960a7e7f1591c8c8dc7956488578b36117033d76 (diff)
iOS: Fixed input positioning (non-animated widget)
If there were no entry animation, the native UI control would not be correctly placed.
Diffstat (limited to 'src/ui/root.c')
-rw-r--r--src/ui/root.c2
1 files changed, 1 insertions, 1 deletions
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) {
688} 688}
689 689
690void notifyVisualOffsetChange_Root(iRoot *d) { 690void notifyVisualOffsetChange_Root(iRoot *d) {
691 if (d && (d->didAnimateVisualOffsets || d->didOverflowScroll)) { 691 if (d && (d->didAnimateVisualOffsets || d->didChangeArrangement)) {
692 iNotifyAudience(d, visualOffsetsChanged, RootVisualOffsetsChanged); 692 iNotifyAudience(d, visualOffsetsChanged, RootVisualOffsetsChanged);
693 } 693 }
694} 694}