Open chriskmanx opened 6 months ago
For clarity, the visible flag is set ( it is the default ) but we ensure it is set explicitly for good measure and call present() for extra measure:
println("Making application window visible...") application_window.visible = true println("-----------Application Window----------------") println(application_window) println("---------------------------------------------") present(application_window) # should put window on top on Windows & Linux # OSX needs app bundle # for proper foregrounding
If I add "using GLMakie" to the "application.jl" example I don't see this issue on Linux. Does that reproduce it for you?
I am away from my machine at this time, but so shall try that when I get home.
So I tried to make "application.jl" reproduce the error ( OSX ) but that seemed to work fine. I'll see if I can cut my application down to a skeleton and post that here.
Environment is OSX and Julia 1.9.3.
Like this the main application window shows:
Like this the main application window shows:
Like this the main application window does NOT show:
Application window is constructed thusly :
where X and Y dimensions are integers and the remaining parameters are booleans.