From ada1e212f1f626276cce845cfc03f4167343ed73 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sat, 8 Apr 2023 19:50:16 -0400 Subject: [PATCH] range: Fix a copy-paste error This was showing up as the alpha popup in the color editor not being positioned correctly. --- gtk/gtkrange.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkrange.c b/gtk/gtkrange.c index ebe4cb706b..87a78508a7 100644 --- a/gtk/gtkrange.c +++ b/gtk/gtkrange.c @@ -1010,7 +1010,7 @@ gtk_range_get_slider_range (GtkRange *range, else { if (slider_start) - *slider_start = slider_bounds.origin.y; + *slider_start = slider_bounds.origin.x; if (slider_end) *slider_end = slider_bounds.origin.x + slider_bounds.size.width; } -- 2.30.2