summaryrefslogtreecommitdiff
path: root/apps/screen_access.c
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2010-01-26 20:14:42 +0000
committerThomas Martitz <kugel@rockbox.org>2010-01-26 20:14:42 +0000
commit5629d551d710bd57a1cef129ce5a69b76cbbdd12 (patch)
tree1196849b9a02ebf39fa5d6c33df1db9334aeead2 /apps/screen_access.c
parent7a73a9cd4e882ebbc37831160ec18d0f251f14bd (diff)
downloadrockbox-5629d551d710bd57a1cef129ce5a69b76cbbdd12.tar.gz
rockbox-5629d551d710bd57a1cef129ce5a69b76cbbdd12.zip
Accept the last patch FS#10797 with a few changes by me (fixing side effects and adding the new backdrop_hide() to the multi screen api). It changes the hide_bars parameter to mean hide_theme.
This makes plugins show the menu backdrop in their backdrop so that they don't look like crap if you have an sbs and look more integrated. I've test about all plugins and all work fine. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24335 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/screen_access.c')
-rw-r--r--apps/screen_access.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/screen_access.c b/apps/screen_access.c
index 19ab77654e..8267ce3ecd 100644
--- a/apps/screen_access.c
+++ b/apps/screen_access.c
@@ -202,6 +202,7 @@ struct screen screens[NB_SCREENS] =
202 .backdrop_load=&backdrop_load, 202 .backdrop_load=&backdrop_load,
203 .backdrop_unload=&backdrop_unload, 203 .backdrop_unload=&backdrop_unload,
204 .backdrop_show=&backdrop_show, 204 .backdrop_show=&backdrop_show,
205 .backdrop_hide=&backdrop_hide,
205#ifdef HAVE_BUTTONBAR 206#ifdef HAVE_BUTTONBAR
206 .has_buttonbar=false, 207 .has_buttonbar=false,
207#endif 208#endif
@@ -288,6 +289,7 @@ struct screen screens[NB_SCREENS] =
288 .backdrop_load=&remote_backdrop_load, 289 .backdrop_load=&remote_backdrop_load,
289 .backdrop_unload=&remote_backdrop_unload, 290 .backdrop_unload=&remote_backdrop_unload,
290 .backdrop_show=&remote_backdrop_show, 291 .backdrop_show=&remote_backdrop_show,
292 .backdrop_hide=&remote_backdrop_hide,
291#ifdef HAVE_BUTTONBAR 293#ifdef HAVE_BUTTONBAR
292 .has_buttonbar=false, 294 .has_buttonbar=false,
293#endif 295#endif