summaryrefslogtreecommitdiff
path: root/src/ui/window.c
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-03-10 14:58:35 +0200
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-03-10 14:58:35 +0200
commitbe1b78651171e9a9386c9fbbf8b8aced2e8dbcac (patch)
tree2fcf099d487f0712619bff822f01648182e96509 /src/ui/window.c
parent199e99d120086af2e782ca994a3df080401e33de (diff)
Mobile: Phone-styled input dialog
Diffstat (limited to 'src/ui/window.c')
-rw-r--r--src/ui/window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/window.c b/src/ui/window.c
index 637174b4..afc05da9 100644
--- a/src/ui/window.c
+++ b/src/ui/window.c
@@ -1811,7 +1811,7 @@ iRect safeRootRect_Window(const iWindow *d) {
1811#if defined (iPlatformAppleMobile) 1811#if defined (iPlatformAppleMobile)
1812 float left, top, right, bottom; 1812 float left, top, right, bottom;
1813 safeAreaInsets_iOS(&left, &top, &right, &bottom); 1813 safeAreaInsets_iOS(&left, &top, &right, &bottom);
1814 adjustEdges_Rect(&rect, top, right, bottom, left); 1814 adjustEdges_Rect(&rect, top, -right, -bottom, left);
1815#endif 1815#endif
1816 return rect; 1816 return rect;
1817} 1817}