comparison dwtest.c @ 2831:adb0e4ce9347

iOS: Fix multi-line container display, had to stop using buttons for images. Still need to connect the signal handlers to the column buttons. Switch to using Multi-line container mode in the test program on mobile.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Sat, 10 Sep 2022 22:03:47 +0000
parents 455d539ac555
children 444031116159
comparison
equal deleted inserted replaced
2830:cc9258ba53d7 2831:adb0e4ce9347
2191 /* Enable full dark mode on platforms that support it */ 2191 /* Enable full dark mode on platforms that support it */
2192 if(getenv("DW_DARK_MODE")) 2192 if(getenv("DW_DARK_MODE"))
2193 dw_feature_set(DW_FEATURE_DARK_MODE, DW_DARK_MODE_FULL); 2193 dw_feature_set(DW_FEATURE_DARK_MODE, DW_DARK_MODE_FULL);
2194 2194
2195 #ifdef DW_MOBILE 2195 #ifdef DW_MOBILE
2196 /* Enable extra container display on Mobile platforms */ 2196 /* Enable multi-line container display on Mobile platforms */
2197 dw_feature_set(DW_FEATURE_CONTAINER_MODE, DW_CONTAINER_MODE_EXTRA); 2197 dw_feature_set(DW_FEATURE_CONTAINER_MODE, DW_CONTAINER_MODE_MULTI);
2198 #endif 2198 #endif
2199 2199
2200 /* Initialize the Dynamic Windows engine */ 2200 /* Initialize the Dynamic Windows engine */
2201 dw_init(TRUE, argc, argv); 2201 dw_init(TRUE, argc, argv);
2202 2202