diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2012-02-28 22:05:28 +1100 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2012-02-28 23:51:01 +1100 |
| commit | 34031cba5bddcc29dee0f61b3ea6ee1529014181 (patch) | |
| tree | fed3c7dc82c2711f505dc5e51a9c4ce71470c606 /lib/skin_parser | |
| parent | 0807fe8d3634010a8a8303e5b0a7abb2bd28a937 (diff) | |
| download | rockbox-34031cba5bddcc29dee0f61b3ea6ee1529014181.zip rockbox-34031cba5bddcc29dee0f61b3ea6ee1529014181.tar.gz rockbox-34031cba5bddcc29dee0f61b3ea6ee1529014181.tar.bz2 rockbox-34031cba5bddcc29dee0f61b3ea6ee1529014181.tar.xz | |
skin_engine: Clean up %x() handling - beware theme issues
Internally remove some hacks around how %x() is handled.
%x() inside the default viewport will no longer work if
other viewports are used, so if you are using viewports and
%x() make sure it is in a viewport!
Change-Id: I8ecab805d55fc0f8476ff0516cba38e23400aa20
Diffstat (limited to 'lib/skin_parser')
| -rw-r--r-- | lib/skin_parser/tag_table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/skin_parser/tag_table.c b/lib/skin_parser/tag_table.c index a44b2ef..e4b8bb1 100644 --- a/lib/skin_parser/tag_table.c +++ b/lib/skin_parser/tag_table.c @@ -178,7 +178,7 @@ static const struct tag_info legal_tags[] = { SKIN_TOKEN_IMAGE_PRELOAD, "xl", "SFII|I", 0|NOBREAK }, { SKIN_TOKEN_IMAGE_PRELOAD_DISPLAY, "xd", "S|[IT]I", 0 }, - { SKIN_TOKEN_IMAGE_DISPLAY, "x", "SFII", 0|NOBREAK }, + { SKIN_TOKEN_IMAGE_DISPLAY, "x", "SFII", SKIN_REFRESH_STATIC|NOBREAK }, { SKIN_TOKEN_LOAD_FONT, "Fl" , "IF|I", 0|NOBREAK }, { SKIN_TOKEN_ALBUMART_LOAD, "Cl" , "IIII|ss", 0|NOBREAK }, |