We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ebd133 commit d25cb26Copy full SHA for d25cb26
1 file changed
gui-lib/mred/private/wx/gtk/frame.rkt
@@ -607,12 +607,13 @@
607
(cond
608
;; work around the upstream issue https://gitlab.gnome.org/GNOME/gtk/-/issues/2599
609
[(and wayland?
610
- ;; for gtk3 >= 3.24.9
+ ;; for gtk3 >= 3.24.9 and < 3.24.42
611
gtk3?
612
(or
613
(> (gtk_get_minor_version) 24)
614
(and (= (gtk_get_minor_version) 24)
615
- (>= (gtk_get_micro_version) 9))))
+ (>= (gtk_get_micro_version) 9)
616
+ (< (gtk_get_micro_version) 42))))
617
(define scale (gdk_screen_get_monitor_scale_factor
618
(gdk_screen_get_default)
619
num))
0 commit comments