summaryrefslogtreecommitdiff
path: root/apps/gui/bitmap
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2010-02-26 03:45:41 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2010-02-26 03:45:41 +0000
commit466e5d9aa4fcdc3da6172eb9ae125fd4157be0b9 (patch)
tree660ff0f1991703cd87e77bab3cccca190d0f5e28 /apps/gui/bitmap
parentca755f767c2d67fb2b52c292402b3b3d3be28244 (diff)
downloadrockbox-466e5d9aa4fcdc3da6172eb9ae125fd4157be0b9.tar.gz
rockbox-466e5d9aa4fcdc3da6172eb9ae125fd4157be0b9.zip
2 new tags for the base skin.
%Lt - the title text for the current list %Li - the icon number. Same order as the CustomIcons list, except the first icon is the "no icon" icon. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24917 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui/bitmap')
-rw-r--r--apps/gui/bitmap/list.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/gui/bitmap/list.c b/apps/gui/bitmap/list.c
index e209003372..10616c9df4 100644
--- a/apps/gui/bitmap/list.c
+++ b/apps/gui/bitmap/list.c
@@ -40,6 +40,7 @@
40#include "sound.h" 40#include "sound.h"
41#include "misc.h" 41#include "misc.h"
42#include "viewport.h" 42#include "viewport.h"
43#include "statusbar-skinned.h"
43 44
44#define ICON_PADDING 1 45#define ICON_PADDING 1
45 46
@@ -82,6 +83,8 @@ static bool draw_title(struct screen *display, struct gui_synclist *list)
82 int style = STYLE_DEFAULT; 83 int style = STYLE_DEFAULT;
83 struct viewport *title_text_vp = &title_text[screen]; 84 struct viewport *title_text_vp = &title_text[screen];
84 85
86 if (sb_set_title_text(list->title, list->title_icon, screen))
87 return false; /* the sbs is handling the title */
85 display->scroll_stop(title_text_vp); 88 display->scroll_stop(title_text_vp);
86 if (!list_display_title(list, screen)) 89 if (!list_display_title(list, screen))
87 return false; 90 return false;