summaryrefslogtreecommitdiff
path: root/apps/filetree.c
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2009-12-09 07:25:46 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2009-12-09 07:25:46 +0000
commitb2eb44ce0eb24632a46b0ea8c8c46a8f2ba35e24 (patch)
treeff3c0e14e9a53c08749ee1f233a5b1e887d3561a /apps/filetree.c
parent85aad9b3972208b0e34ba0241ebb5314118ae05e (diff)
downloadrockbox-b2eb44ce0eb24632a46b0ea8c8c46a8f2ba35e24.tar.gz
rockbox-b2eb44ce0eb24632a46b0ea8c8c46a8f2ba35e24.zip
FS#10824 - viewport/statusbar API rework.
Hopefully the only user visible changes are: - fm and recording screens go by the statusbar setting (sbs or inbuilt) - plugins go back to using the theme as they should for menus and lists - splash screens might get cut a bit... entirely theme and splash dependant.. if there is a problematic one we can look at it later. - hopefully nothing more than very minor screen flickerings... let me know exactly where they are so they can be fixed New GUI screen rules: * Screens assume that the theme (sbs+ui viewport+ maybe background image) are always enabled. They may be disabled on a per display basis, but MUST be re-enabled on exit * Screens must not be coded in a way that requires a statusbar of any type.. the inbuilt bar will be removed shortly. ALWAYS RESPECT THE USERS SETTINGS unless the screen requires the full display to fit. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23904 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/filetree.c')
-rw-r--r--apps/filetree.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/apps/filetree.c b/apps/filetree.c
index 6b56c80cd5..e5da8246f7 100644
--- a/apps/filetree.c
+++ b/apps/filetree.c
@@ -528,9 +528,6 @@ int ft_enter(struct tree_context* c)
528 splash(0, ID2P(LANG_WAIT)); 528 splash(0, ID2P(LANG_WAIT));
529 if (!settings_load_config(buf,true)) 529 if (!settings_load_config(buf,true))
530 break; 530 break;
531
532 /* redraw the UI in case the user setting changed apparence */
533 send_event(GUI_EVENT_REFRESH, tree_drawlists);
534 splash(HZ, ID2P(LANG_SETTINGS_LOADED)); 531 splash(HZ, ID2P(LANG_SETTINGS_LOADED));
535 break; 532 break;
536 533
@@ -652,8 +649,6 @@ int ft_enter(struct tree_context* c)
652 } 649 }
653 } 650 }
654 651
655 send_event(GUI_EVENT_REFRESH, tree_drawlists);
656
657 if ( play ) { 652 if ( play ) {
658 /* the resume_index must always be the index in the 653 /* the resume_index must always be the index in the
659 shuffled list in case shuffle is enabled */ 654 shuffled list in case shuffle is enabled */