summaryrefslogtreecommitdiff
path: root/apps/gui/quickscreen.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/gui/quickscreen.c')
-rw-r--r--apps/gui/quickscreen.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/apps/gui/quickscreen.c b/apps/gui/quickscreen.c
index d092f0b04a..1482310385 100644
--- a/apps/gui/quickscreen.c
+++ b/apps/gui/quickscreen.c
@@ -275,7 +275,13 @@ static bool gui_quickscreen_do_button(struct gui_quickscreen * qs, int button)
275 } 275 }
276 if (qs->items[item] == NULL) 276 if (qs->items[item] == NULL)
277 return false; 277 return false;
278 278#ifdef ASCENDING_INT_SETTINGS
279 if (((qs->items[item]->flags & F_INT_SETTING) == F_INT_SETTING) &&
280 ( button == ACTION_QS_DOWN || button == ACTION_QS_TOP))
281 {
282 invert = !invert;
283 }
284#endif
279 option_select_next_val(qs->items[item], invert, true); 285 option_select_next_val(qs->items[item], invert, true);
280 talk_qs_option(qs->items[item], false); 286 talk_qs_option(qs->items[item], false);
281 return true; 287 return true;