Jared Wahlstrand
Jared Wahlstrand
No, but with introspection it wouldn't be much work to make a package for libadwaita.
Thanks, that's good to hear. The API changes for most applications shouldn't be that big. The removal of GtkContainer and GtkBin is hidden by the Julia interface because push!, getindex,...
It seems like Gtk.jl's auto-idle should work fine with PackageCompiler, but if I run the `CountClick` executable with `GTK_AUTO_IDLE=false`, it gets a little farther before crashing. I'm on Linux, Julia...
I've seen the first warning (which is usually harmless) but not the second. What's the output of `versioninfo()`?
Huh, it seems likely to be a JLL issue. I wonder if some GTK4 dependency living in `LD_LIBRARY_PATH` is being picked up by the library. We may have to bring...
Sorry for failing to return until now. I recently updated the GTK library to the latest version. If that doesn't change anything, you could try setting `ENV["GSK_RENDERER"]="cairo"` before calling `using...
I wonder if #687 fixes it -- I don't have time to check. But yes, `Gtk4.jl` does seem to work OK with `PackageCompiler`.
Definitely not expected, this is a bug in one of the libraries that I've only seen on Windows. Probably the same as #32.
This doesn't look like the GTK issue. From the stacktrace it looks like it's taking forever to `show()` something in the output. Does calling `imshow` with a semicolon at the...
I'd assume the slowness has to do with ImageView using [Cairo](https://www.cairographics.org/) to draw an image into a memory buffer, which is then shown by GTK. There's little to no GPU...