summaryrefslogtreecommitdiff
path: root/apps/gui
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2010-06-08 14:52:03 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2010-06-08 14:52:03 +0000
commit2309d6d1e14c843250e4efa7cfac019e63d620ac (patch)
tree9dbfd76a50febf7ee92a14439c97622f6b011ab7 /apps/gui
parentc4fbb07a762e6c64514b8742ac0d091718d4f237 (diff)
downloadrockbox-2309d6d1e14c843250e4efa7cfac019e63d620ac.tar.gz
rockbox-2309d6d1e14c843250e4efa7cfac019e63d620ac.zip
change to %Cd to display albumart (instead of %C to make it more consistant with %Vd/%Vl and %xd/%xl)
Also assume ; in skins are for sublines.. this means if you want ; in text you need to manually escape it (%;) far less false positives then git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26693 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui')
-rw-r--r--apps/gui/skin_engine/skin_parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/skin_engine/skin_parser.c b/apps/gui/skin_engine/skin_parser.c
index f423340b2a..f5d49f9e22 100644
--- a/apps/gui/skin_engine/skin_parser.c
+++ b/apps/gui/skin_engine/skin_parser.c
@@ -390,7 +390,7 @@ static const struct wps_tag all_tags[] = {
390 { WPS_NO_TOKEN, "Fl", 0, parse_font_load }, 390 { WPS_NO_TOKEN, "Fl", 0, parse_font_load },
391#ifdef HAVE_ALBUMART 391#ifdef HAVE_ALBUMART
392 { WPS_NO_TOKEN, "Cl", 0, parse_albumart_load }, 392 { WPS_NO_TOKEN, "Cl", 0, parse_albumart_load },
393 { WPS_TOKEN_ALBUMART_DISPLAY, "C", WPS_REFRESH_STATIC, parse_albumart_display }, 393 { WPS_TOKEN_ALBUMART_DISPLAY, "Cd", WPS_REFRESH_STATIC, parse_albumart_display },
394#endif 394#endif
395 395
396 { WPS_VIEWPORT_ENABLE, "Vd", WPS_REFRESH_DYNAMIC, 396 { WPS_VIEWPORT_ENABLE, "Vd", WPS_REFRESH_DYNAMIC,