# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1333150967 0 # Node ID c8a0daa53e490da05add7f0993e60d31a0f84659 # Parent 1d3013463204c74e88cd571fb3420bbd8ede4cf5 In GTK 3.4 foreground colors are now inherited from the parent. So don't set the foreground color on boxes anymore to prevent invisible drawing of labels that are on the boxes. diff -r 1d3013463204 -r c8a0daa53e49 gtk3/dw.c --- a/gtk3/dw.c Thu Mar 29 17:10:04 2012 +0000 +++ b/gtk3/dw.c Fri Mar 30 23:42:47 2012 +0000 @@ -2782,7 +2782,10 @@ { GtkWidget *tmp = (GtkWidget *)g_object_get_data(G_OBJECT(handle), "_dw_eventbox"); if(tmp) + { handle2 = tmp; + fore = DW_CLR_DEFAULT; + } } _set_color(handle2, fore, back);