You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a menu extends the boundary of the HISE window, the first few items at the top will not be selectable. This only seems to affect Macs with the notch style camera (An older 2018 MBP running the same OS does not exhibit this behaviour). The "dead spot" is highlighted in red below:
When a menu extends the boundary of the HISE window, the first few items at the top will not be selectable. This only seems to affect Macs with the notch style camera (An older 2018 MBP running the same OS does not exhibit this behaviour). The "dead spot" is highlighted in red below:
This has also been reported on the JUCE forum.
A quick and dirty fix is to tell menus to stay within the HISE window by changing line 786 of juce_PopupMenu.cpp from:
auto parentArea = display->safeAreaInsets.subtractedFrom (display->totalArea);
to:
auto parentArea = display->safeAreaInsets.subtractedFrom (display->userArea);
The text was updated successfully, but these errors were encountered: