Content.height crash
-
When I use more than 900px for height, Hise quits as soon as I hit compile. On Hise 2.0 MacOS
Any workaround or solution? -
Crashing is obviously a bit too rude but 900px is really high and most notebook displays will not be able to display the full size. Are you sure you need this much screen estate? You can always add a scaling factor selector for people with big a** screens.
-
Try using
Content.makeFrontInterface(width, height);
instead. I made a plugin for an iPad size display which has a height of 1024 without any issue but if I usesetHeight()
I get a crash. -
@Christoph-Hart @d-healey I'm not doing an UI for the final user but one for development containig a huge amount of knobs that needs more than 900px height. I don't care if scroll is needed. This is why I need more than 900px. Can I remove the 900px limit somewhere on Hise source and recompile?
-
@hisefilo I think it's a bug rather than a limit. Use a viewport instead. Put a panel in the viewport and put your controls in the panel.
-
@d-healey Thanks!!!! Will try that