summaryrefslogtreecommitdiff
path: root/src/defs.h
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-03-21 14:29:51 +0200
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-03-21 14:29:51 +0200
commit2f9e203058df442921fc0151ddc5fe9b68b87935 (patch)
tree5441025fcf4e974e82128f65376650bec7a941bb /src/defs.h
parentb93ba1bfb860c2a4b5bf46c77f3f0d11b4eb1282 (diff)
iOS: Save to Files; hide toolbar on scroll
There is no downloads directory on mobile. Instead, the downloaded file is temporarily cached and given to the iOS document picker to export. Added an option to hide the bottom toolbar while scrolling down.
Diffstat (limited to 'src/defs.h')
-rw-r--r--src/defs.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/defs.h b/src/defs.h
index eb8affec..27eacd3b 100644
--- a/src/defs.h
+++ b/src/defs.h
@@ -82,3 +82,11 @@ enum iFileVersion {
82#define unhappy_Icon "\U0001f641" 82#define unhappy_Icon "\U0001f641"
83#define globe_Icon "\U0001f310" 83#define globe_Icon "\U0001f310"
84#define magnifyingGlass_Icon "\U0001f50d" 84#define magnifyingGlass_Icon "\U0001f50d"
85
86/* UI labels that depend on the platform */
87
88#if defined (iPlatformMobile)
89# define saveToDownloads_Label "Save to Files"
90#else
91# define saveToDownloads_Label "Save to Downloads"
92#endif