mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
gradient: Add color stops to the right gradient
This was causing an infinite loop happily eating up memory. https://bugzilla.gnome.org/show_bug.cgi?id=687467
This commit is contained in:
parent
5e59033eb3
commit
b42a4e2276
@ -468,7 +468,7 @@ gtk_gradient_fade (GtkGradient *gradient,
|
||||
|
||||
stop = &g_array_index (gradient->stops, ColorStop, i);
|
||||
color = gtk_symbolic_color_new_alpha (stop->color, opacity);
|
||||
gtk_gradient_add_color_stop (gradient, stop->offset, color);
|
||||
gtk_gradient_add_color_stop (faded, stop->offset, color);
|
||||
gtk_symbolic_color_unref (color);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user