changeset 158:3b95a19f0764

iOS/Android: Switch to using extra container mode for mobile platforms. So we can see the file sizes and timestamps, but need to use the context menu for sorting since the columns are not clickable.
author Brian Smith <brian@dbsoft.org>
date Sat, 10 Sep 2022 17:06:13 -0500
parents 35d2bf9ae680
children 7e0145aebfd2
files src/handyftp.c
diffstat 1 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/handyftp.c	Sun Jul 17 05:57:20 2022 -0500
+++ b/src/handyftp.c	Sat Sep 10 17:06:13 2022 -0500
@@ -7065,6 +7065,11 @@
 	if(getenv("DW_DARK_MODE"))
 		dw_feature_set(DW_FEATURE_DARK_MODE, DW_DARK_MODE_FULL);
 
+#ifdef DW_MOBILE
+    /* Enable extra container display on Mobile platforms */
+    dw_feature_set(DW_FEATURE_CONTAINER_MODE, DW_CONTAINER_MODE_EXTRA);
+#endif
+
 	/* Set the application ID so notifications will work */
 	dw_app_id_set("org.dbsoft.handyftp", "HandyFTP");