From a70c6b9b1e2bcf7a5a207017d6c40f5254f6ef98 Mon Sep 17 00:00:00 2001 From: Hristo Kovachev Date: Sat, 25 Mar 2006 19:16:45 +0000 Subject: Patch #4913 by David Rothenberger with some changes by me: add only backlight on first keypress to the lcd remotes, too. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9253 a1c6a512-1295-4272-9138-f99709370657 --- apps/settings.c | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'apps/settings.c') diff --git a/apps/settings.c b/apps/settings.c index 4487361e8d..8c4e3dea71 100644 --- a/apps/settings.c +++ b/apps/settings.c @@ -297,11 +297,18 @@ static const struct bit_entry rtc_bits[] = #endif #ifdef CONFIG_BACKLIGHT + {1, S_O(bl_filter_first_keypress), #ifdef HAVE_LCD_COLOR - {1, S_O(bl_filter_first_keypress), true, "backlight filters first keypress", off_on }, + true, #else - {1, S_O(bl_filter_first_keypress), false, "backlight filters first keypress", off_on }, + false, #endif + "backlight filters first keypress", off_on }, +#ifdef HAVE_REMOTE_LCD + {1, S_O(remote_bl_filter_first_keypress), false, + "backlight filters first remote keypress", off_on }, +#endif + #endif /* new stuff to be added here */ @@ -1126,6 +1133,9 @@ void settings_apply(void) #ifdef CONFIG_BACKLIGHT set_backlight_filter_keypress(global_settings.bl_filter_first_keypress); +#ifdef HAVE_REMOTE_LCD + set_remote_backlight_filter_keypress(global_settings.remote_bl_filter_first_keypress); +#endif #endif } -- cgit v1.2.3