# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1304633748 0 # Node ID 32830f1683c92d11bec5eedefe8fe700ba1a2d31 # Parent 2a21915684d1fd18b0ab1979f69d004d1450c457 Fixed an issue where dw_color_background_set() would not function. diff -r 2a21915684d1 -r 32830f1683c9 gtk3/dw.c --- a/gtk3/dw.c Thu May 05 22:05:06 2011 +0000 +++ b/gtk3/dw.c Thu May 05 22:15:48 2011 +0000 @@ -6499,6 +6499,7 @@ if(!background) { background = malloc(sizeof(GdkColor)); + pthread_setspecific(_dw_bg_color_key, background); } *background = color; }