diff options
-rw-r--r-- | src/sbmanager.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/sbmanager.c b/src/sbmanager.c index 6949946..a2b91bb 100644 --- a/src/sbmanager.c +++ b/src/sbmanager.c @@ -732,11 +732,15 @@ static void gui_set_current_page(int pageindex) static void gui_show_next_page() { + /* make sure the page has correct aligned icons */ + gui_page_align_icons(current_page+1, FALSE); gui_set_current_page(current_page+1); } static void gui_show_previous_page() { + /* make sure the page has correct aligned icons */ + gui_page_align_icons(current_page-1, FALSE); gui_set_current_page(current_page-1); } |