diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2010-01-07 07:34:15 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2010-01-07 07:34:15 +0000 |
| commit | 91e6b06be97aac8e0f532113723fa9a38fc6cf8c (patch) | |
| tree | 973c8538bf4cdfcb418103563e2b42f8ce421a15 /apps/filetree.c | |
| parent | 57667c51cf09de052222484ce94fbd6da113a55c (diff) | |
| download | rockbox-91e6b06be97aac8e0f532113723fa9a38fc6cf8c.zip rockbox-91e6b06be97aac8e0f532113723fa9a38fc6cf8c.tar.gz rockbox-91e6b06be97aac8e0f532113723fa9a38fc6cf8c.tar.bz2 rockbox-91e6b06be97aac8e0f532113723fa9a38fc6cf8c.tar.xz | |
RTL language enhancements by Tomers Shalev and I.
3 new tokens:
%ax - the next token should follow the language direction (what that means is defined by the individual tokens)
%aL - align left on LTR language (same as %al), right on RTL languages
%aR - align right on LTR language (same as %ar), left on RTL languages
This commit adds %ax support to the %V and %Cl tokens.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24193 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/filetree.c')
| -rw-r--r-- | apps/filetree.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/filetree.c b/apps/filetree.c index e5da824..ccf4c2b 100644 --- a/apps/filetree.c +++ b/apps/filetree.c @@ -548,6 +548,7 @@ int ft_enter(struct tree_context* c) MAX_FILENAME); talk_init(); /* use voice of same language */ viewportmanager_theme_changed(THEME_LANGUAGE); + settings_apply_skins(); splash(HZ, ID2P(LANG_LANGUAGE_LOADED)); break; |