summaryrefslogtreecommitdiff
path: root/apps/gui/gwps.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/gui/gwps.c')
-rw-r--r--apps/gui/gwps.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/gui/gwps.c b/apps/gui/gwps.c
index 1ff5410cf7..6285f7793f 100644
--- a/apps/gui/gwps.c
+++ b/apps/gui/gwps.c
@@ -681,17 +681,19 @@ long gui_wps_show(void)
681 if (wps_state.do_full_update || update) 681 if (wps_state.do_full_update || update)
682 { 682 {
683 FOR_NB_SCREENS(i) 683 FOR_NB_SCREENS(i)
684 {
684#if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP) 685#if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP)
685 if (lcd_active() 686 if (lcd_active()
686#ifdef HAVE_REMOTE_LCD 687#ifdef HAVE_REMOTE_LCD
687 /* currently, all remotes are readable without backlight 688 /* currently, all remotes are readable without backlight
688 * so still update those */ 689 * so still update those */
689 && (i == SCREEN_MAIN) 690 || (i == SCREEN_REMOTE)
690#endif 691#endif
691 ) 692 )
692#endif 693#endif
693 { 694 {
694 gui_wps_update(&gui_wps[i]); 695 gui_wps_update(&gui_wps[i]);
696 }
695 } 697 }
696 wps_state.do_full_update = false; 698 wps_state.do_full_update = false;
697 update = false; 699 update = false;