When I run Hello World from Tutorial I got a minimized window and can only maximize or minimize back. That is a problem for now :)
(java2d/run (constantly
(ui/label "hello world"))
{:window-start-width 400
:window-start-height 400})
works for me! Thank you Adrian.Not sure the best way to get glfw to work well with your distribution.
One option is to pass in :window-start-width and :window-start-height when creating windows like so:
(skia/run (constantly
(ui/label "hello world"))
{:window-start-width 400
:window-start-height 400})
You can change the starting width and height to whatever makes sense.
Another option would be to use the java2d backend instead of skia. For the most part, you can just replace membrane.skia/run with membrane.java2d/run. Just make sure to restart your repl and only include one since the windowing libraries don't play well with eachother!Can't resize!