forked from len0rd/rockbox
Icons in the menus. Thanks midkay for them.
Any menus which dont yet show them are not converted to the new system. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12300 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
7df87126f0
commit
5599d6806d
13 changed files with 170 additions and 53 deletions
|
|
@ -1096,7 +1096,13 @@ static bool do_set_setting(const unsigned char* string, void *variable,
|
|||
else oldvalue = *(bool*)variable;
|
||||
|
||||
gui_synclist_init(&lists,value_setting_get_name_cb,(void*)cb_data,false,1);
|
||||
gui_synclist_set_title(&lists, (char*)string, NOICON);
|
||||
gui_synclist_set_title(&lists, (char*)string,
|
||||
#ifdef HAVE_LCD_BITMAP
|
||||
bitmap_icons_6x8[Icon_Questionmark]
|
||||
#else
|
||||
NOICON
|
||||
#endif
|
||||
);
|
||||
gui_synclist_set_icon_callback(&lists,NULL);
|
||||
gui_synclist_set_nb_items(&lists,nb_items);
|
||||
gui_synclist_limit_scroll(&lists,true);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue