summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorBertrik Sikken <bertrik@sikken.nl>2012-05-27 01:39:06 +0200
committerBertrik Sikken <bertrik@sikken.nl>2012-05-27 02:38:04 +0200
commit872a3a7be3f11b59e4d3a59fb88f64d157a2648e (patch)
tree923c1a8f80585f0a37112b51be75b98a40378765 /apps
parent2fb4fe90f6bb814fbc3d621cd6bc7fcfab100175 (diff)
downloadrockbox-872a3a7be3f11b59e4d3a59fb88f64d157a2648e.tar.gz
rockbox-872a3a7be3f11b59e4d3a59fb88f64d157a2648e.zip
clipzip: fix default font and icon set
Change-Id: I6eb247eaf7e3306cfc2db25cf93e3be5585cf904
Diffstat (limited to 'apps')
-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"