From a13ee20995232c9665f33b7eebab75032e93f536 Mon Sep 17 00:00:00 2001 From: bertrik 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 1740e99f9..ae0a23091 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; -- 2.11.4.GIT