summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/settings_list.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/apps/settings_list.c b/apps/settings_list.c
index 64bbe07ba4..10d00d5c89 100644
--- a/apps/settings_list.c
+++ b/apps/settings_list.c
@@ -214,6 +214,9 @@ static const char graphic_numeric[] = "graphic,numeric";
214#elif LCD_HEIGHT <= 80 214#elif LCD_HEIGHT <= 80
215 #define DEFAULT_FONT_HEIGHT 11 215 #define DEFAULT_FONT_HEIGHT 11
216 #define DEFAULT_FONTNAME "11-Sazanami-Mincho" 216 #define DEFAULT_FONTNAME "11-Sazanami-Mincho"
217#elif (LCD_HEIGHT == 96) && (LCD_WIDTH == 96) /* sandisk sansa clip zip */
218 #define DEFAULT_FONT_HEIGHT 8
219 #define DEFAULT_FONTNAME "08-Rockfont"
217#elif LCD_HEIGHT <= 220 220#elif LCD_HEIGHT <= 220
218 #define DEFAULT_FONT_HEIGHT 12 221 #define DEFAULT_FONT_HEIGHT 12
219#elif LCD_HEIGHT <= 320 222#elif LCD_HEIGHT <= 320
@@ -250,9 +253,12 @@ static const char graphic_numeric[] = "graphic,numeric";
250 #elif DEFAULT_FONT_HEIGHT >= 15 253 #elif DEFAULT_FONT_HEIGHT >= 15
251 #define DEFAULT_ICONSET "tango_icons.16x16" 254 #define DEFAULT_ICONSET "tango_icons.16x16"
252 #define DEFAULT_VIEWERS_ICONSET "tango_icons_viewers.16x16" 255 #define DEFAULT_VIEWERS_ICONSET "tango_icons_viewers.16x16"
253 #else 256 #elif DEFAULT_FONT_HEIGHT >= 11
254 #define DEFAULT_ICONSET "tango_icons.12x12" 257 #define DEFAULT_ICONSET "tango_icons.12x12"
255 #define DEFAULT_VIEWERS_ICONSET "tango_icons_viewers.12x12" 258 #define DEFAULT_VIEWERS_ICONSET "tango_icons_viewers.12x12"
259 #elif DEFAULT_FONT_HEIGHT >= 7
260 #define DEFAULT_ICONSET "tango_icons.8x8"
261 #define DEFAULT_VIEWERS_ICONSET "tango_icons_viewers.8x8"
256 #endif 262 #endif
257#elif LCD_DEPTH > 1 /* greyscale */ 263#elif LCD_DEPTH > 1 /* greyscale */
258 #define DEFAULT_ICONSET "tango_small_mono" 264 #define DEFAULT_ICONSET "tango_small_mono"