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
Like this the main application window does NOT show:
using Gtk4
using GLMakie
import Pkg
julia> function package_version(packagename::String)
Pkg_m = Pkg.Operations.Context().env.manifest
thepackage = findfirst(v -> v.name == packagename,Pkg_m)
if isnothing(thepackage)
""
else
Pkg_m[thepackage].version
end
end
package_version (generic function with 1 method)
package_version("GLMakie")
v"0.9.10"
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
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.
The text was updated successfully, but these errors were encountered: