From a11f656d68d4e50582f0d9e2200e4c6715202f76 Mon Sep 17 00:00:00 2001 From: Bertrik Sikken Date: Mon, 4 Aug 2008 17:45:39 +0000 Subject: [PATCH] Apply fix for FS#9203 (WPS gets corrupted after changing status bar setting) by Thomas Schott git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18192 a1c6a512-1295-4272-9138-f99709370657 --- apps/gui/gwps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/gui/gwps.c b/apps/gui/gwps.c index 1740e99f9d..ae0a230919 100644 --- a/apps/gui/gwps.c +++ b/apps/gui/gwps.c @@ -787,7 +787,7 @@ static void statusbar_toggle_handler(void *data) struct wps_viewport *vp = &gui_wps[i].data->viewports[0]; if (gui_wps[i].data->wps_sb_tag) draw = gui_wps[i].data->show_sb_on_wps; - if (!global_settings.statusbar && !draw) + if (!draw) { vp->vp.y = 0; vp->vp.height = screens[i].lcdheight;