# HG changeset patch # User Ideenmodellierer # Date 1619551766 -7200 # Node ID 4df22790dc0c429b342fcadfd4b2fcc0ece1a75d # Parent 9513a92b293bf7d61e3290793e8f58d28157ca52 Bugfix handling of new menu tab in flipped mode: The missing handling of the new menu tab cause the OSTC to hang during iteration through tab while CCR mode was selected. The missing code has been added to fix the issue. diff -r 9513a92b293b -r 4df22790dc0c Discovery/Src/tMenu.c --- a/Discovery/Src/tMenu.c Mon Apr 26 15:03:04 2021 +0200 +++ b/Discovery/Src/tMenu.c Tue Apr 27 21:29:26 2021 +0200 @@ -1362,7 +1362,7 @@ pDestination -= (800) * 480; positionText += 70; - if((k == 4) || ((k == 6) && (menu.pageCountNumber[5] == 0))) + if(((k == 4) && (actual_menu_content != MENU_SURFACE)) || ((k == 6) && (menu.pageCountNumber[5] == 0))) { pDestination -= 70 * 480; positionText += 70;