diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2010-06-08 14:52:03 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2010-06-08 14:52:03 +0000 |
| commit | 2309d6d1e14c843250e4efa7cfac019e63d620ac (patch) | |
| tree | 9dbfd76a50febf7ee92a14439c97622f6b011ab7 /apps/gui | |
| parent | c4fbb07a762e6c64514b8742ac0d091718d4f237 (diff) | |
| download | rockbox-2309d6d1e14c843250e4efa7cfac019e63d620ac.zip rockbox-2309d6d1e14c843250e4efa7cfac019e63d620ac.tar.gz rockbox-2309d6d1e14c843250e4efa7cfac019e63d620ac.tar.bz2 rockbox-2309d6d1e14c843250e4efa7cfac019e63d620ac.tar.xz | |
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.c | 2 |
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 f423340..f5d49f9 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[] = { { WPS_NO_TOKEN, "Fl", 0, parse_font_load }, #ifdef HAVE_ALBUMART { WPS_NO_TOKEN, "Cl", 0, parse_albumart_load }, - { WPS_TOKEN_ALBUMART_DISPLAY, "C", WPS_REFRESH_STATIC, parse_albumart_display }, + { WPS_TOKEN_ALBUMART_DISPLAY, "Cd", WPS_REFRESH_STATIC, parse_albumart_display }, #endif { WPS_VIEWPORT_ENABLE, "Vd", WPS_REFRESH_DYNAMIC, |