forked from AuroraMiddleware/gtk
gtklistboxrow: propagate in the draw vfunc
So objects connected by g_signal_connect_after actually get the signal. This was causing an issue in the dnd highlight, since there a cairo rectangle is draw using g_signal_connect_after on the draw signal.
This commit is contained in:
parent
90a331c84a
commit
e74d2b7564
@ -3089,7 +3089,7 @@ gtk_list_box_row_draw (GtkWidget *widget,
|
||||
|
||||
GTK_WIDGET_CLASS (gtk_list_box_row_parent_class)->draw (widget, cr);
|
||||
|
||||
return TRUE;
|
||||
return GDK_EVENT_PROPAGATE;
|
||||
}
|
||||
|
||||
static void
|
||||
|
Loading…
Reference in New Issue
Block a user