SCT: Better Sheet support for "Go To" menu [2] Bug Number: n/a Release notes (y/n): No, not this detail For Release Nums: 7.2 David has requested that we remove the SCT's "Go To" numbered cascaded submenus for NON-Sheet SCT's having many slot dividers. These numbered cascaded submenus were used only if the SCT had more than 22 dividers. See this example of an SCT with fewer than that: http://cadswes2.colorado.edu/~philw/2017/SCT/GoToMenu/2017-06-21/NoSheet-FewDividers1.png Before this change (or with the NONSHEET_USE_JUMP_SUBMENUS symbol changed to 'true') a NON-Sheet SCT with MANY dividers looks like this: http://cadswes2.colorado.edu/~philw/2017/SCT/GoToMenu/2017-06-21/NoSheet-UseSubmenus1.png With this change (with the NONSHEET_USE_JUMP_SUBMENUS symbol remaining 'false'), that NON-Sheet SCT's "Go To" menu looks like this: http://cadswes2.colorado.edu/~philw/2017/SCT/GoToMenu/2017-06-21/NoSheet-DontUseSubmenus1.png See the 2nd symbol in these three related symbols, at the head of QtSCT/SctDialog: static const int MAX_ITEMS_PER_JUMP_SUBMENU (22); // 7.2: 22 static const bool NONSHEET_USE_JUMP_SUBMENUS (false); // 7.2: false static const bool LIMIT_SHEET_JUMP_SUBMENU_SIZE (false); // 7.2: false ---