We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi!
I'm not sure is it a bug or incorrect usage of a Gtk4.jl, but setting custom font-size to a button using CSS replaces characters with rectangles.
OS: Windows 10. Julia v1.8. MWE:
using Gtk4 css = """ button { font-size: 2.5em; } """ win = GtkWindow("Fonts Demo", 400, 400) cssProvider = GtkCssProvider(css) push!(Gtk4.display(win), cssProvider) push!(win, GtkButton("Hello, Fonts!")) show(win) if !isinteractive() c = Condition() signal_connect(win, :close_request) do widget notify(c) end @async Gtk4.GLib.glib_main() wait(c) end
Illustration attached.
Is it an expected behavior?
The text was updated successfully, but these errors were encountered:
Definitely not expected, this is a bug in one of the libraries that I've only seen on Windows. Probably the same as #32.
Sorry, something went wrong.
There is a fix in the works, see #32 (comment)
Fixed by JuliaPackaging/Yggdrasil#8392
No branches or pull requests
Hi!
I'm not sure is it a bug or incorrect usage of a Gtk4.jl, but setting custom font-size to a button using CSS replaces characters with rectangles.
OS: Windows 10. Julia v1.8. MWE:
Illustration attached.
Is it an expected behavior?
The text was updated successfully, but these errors were encountered: