diff options
author | William Wilgus <wilgus.william@gmail.com> | 2022-04-18 23:06:13 -0400 |
---|---|---|
committer | William Wilgus <me.theuser@yahoo.com> | 2022-04-18 23:08:04 -0400 |
commit | 002575dbcf92b4d409889c164269cf22cb290696 (patch) | |
tree | 11a53498a620d24c01f402c33c0a068a0c6fad49 /apps/menus | |
parent | 1c3f6e063a1e8444873b02463db2a055950ff3c4 (diff) | |
download | rockbox-002575dbcf92b4d409889c164269cf22cb290696.tar.gz rockbox-002575dbcf92b4d409889c164269cf22cb290696.zip |
[BUGFIX] gui_synclist move global display settings to list struct
forgot to add the update function to the list_wraparound callback
Change-Id: I7ee7940f126726c727344d7d09371f1bf3295c81
Diffstat (limited to 'apps/menus')
-rw-r--r-- | apps/menus/display_menu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/menus/display_menu.c b/apps/menus/display_menu.c index ea3fdc0858..6ed0f34ab6 100644 --- a/apps/menus/display_menu.c +++ b/apps/menus/display_menu.c | |||
@@ -360,6 +360,7 @@ static int listwraparound_callback(int action, | |||
360 | { | 360 | { |
361 | case ACTION_EXIT_MENUITEM: | 361 | case ACTION_EXIT_MENUITEM: |
362 | gui_synclist_limit_scroll(this_list, !global_settings.list_wraparound); | 362 | gui_synclist_limit_scroll(this_list, !global_settings.list_wraparound); |
363 | gui_synclist_init_display_settings(this_list); | ||
363 | break; | 364 | break; |
364 | } | 365 | } |
365 | return action; | 366 | return action; |