diff options
author | Nicolas Pennequin <nicolas.pennequin@free.fr> | 2007-04-07 00:18:28 +0000 |
---|---|---|
committer | Nicolas Pennequin <nicolas.pennequin@free.fr> | 2007-04-07 00:18:28 +0000 |
commit | f3a149acf6446195a792d1a7685e449eea2192ea (patch) | |
tree | cd7e9be554a194bdfd52c583db19d9816d287bac | |
parent | d6cb716697a1cb22af0c43bebf0933532d13ddb4 (diff) |
Make conditionals trigger a line update. Fixes FS#6987.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13054 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | apps/gui/gwps-common.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/gui/gwps-common.c b/apps/gui/gwps-common.c index c8dc1562c3..08cc4c646f 100644 --- a/apps/gui/gwps-common.c +++ b/apps/gui/gwps-common.c @@ -1388,6 +1388,7 @@ static bool get_line(struct gui_wps *gwps, case WPS_TOKEN_CONDITIONAL: /* place ourselves in the right conditional case */ i = evaluate_conditional(gwps, i); + update = true; break; case WPS_TOKEN_CONDITIONAL_OPTION: |