summaryrefslogtreecommitdiff
path: root/src/app.c
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-02-22 11:55:13 +0200
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-02-22 11:55:13 +0200
commit1174f2e9318a58602baccdfb3e2465645d263601 (patch)
treeef1a2388790e2ad416a1a71681954b2b595339a8 /src/app.c
parentc95aab351dfcf1282925708b16ceb727895da66b (diff)
iOS: Font adjustments
Diffstat (limited to 'src/app.c')
-rw-r--r--src/app.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app.c b/src/app.c
index 08273591..0f642314 100644
--- a/src/app.c
+++ b/src/app.c
@@ -195,11 +195,11 @@ static iString *serializePrefs_App_(const iApp *d) {
195#endif 195#endif
196 } 196 }
197 /* Sidebars. */ { 197 /* Sidebars. */ {
198 if (isVisible_Widget(sidebar)) { 198 if (isVisible_Widget(sidebar) && deviceType_App() != phone_AppDeviceType) {
199 appendCStr_String(str, "sidebar.toggle\n"); 199 appendCStr_String(str, "sidebar.toggle\n");
200 } 200 }
201 appendFormat_String(str, "sidebar.mode arg:%d\n", mode_SidebarWidget(sidebar)); 201 appendFormat_String(str, "sidebar.mode arg:%d\n", mode_SidebarWidget(sidebar));
202 if (isVisible_Widget(sidebar2)) { 202 if (isVisible_Widget(sidebar2) && deviceType_App() != phone_AppDeviceType) {
203 appendCStr_String(str, "sidebar2.toggle\n"); 203 appendCStr_String(str, "sidebar2.toggle\n");
204 } 204 }
205 appendFormat_String(str, "sidebar2.mode arg:%d\n", mode_SidebarWidget(sidebar2)); 205 appendFormat_String(str, "sidebar2.mode arg:%d\n", mode_SidebarWidget(sidebar2));