diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rwxr-xr-x | lib/egg/egg-editable-toolbar.c | 2 |
2 files changed, 8 insertions, 1 deletions
@@ -1,5 +1,12 @@ 2005-04-26 Christian Persch <chpe@cvs.gnome.org> + * lib/egg/egg-editable-toolbar.c: (new_pixbuf_from_widget): + + Try to fix crash in toolbar editor with X composite extension. Should fix bug + #159767, patch by Colin Gibbs from Control Centre bug #152490. + +2005-04-26 Christian Persch <chpe@cvs.gnome.org> + * configure.ac: Fix filepicker check. diff --git a/lib/egg/egg-editable-toolbar.c b/lib/egg/egg-editable-toolbar.c index 210cebe8c..199e9e621 100755 --- a/lib/egg/egg-editable-toolbar.c +++ b/lib/egg/egg-editable-toolbar.c @@ -1395,7 +1395,7 @@ new_pixbuf_from_widget (GtkWidget *widget) /* Create a pixmap */ visual = gtk_widget_get_visual (window); - pixmap = gdk_pixmap_new (NULL, icon_width, icon_height, gdk_visual_get_best_depth()); + pixmap = gdk_pixmap_new (NULL, icon_width, icon_height, visual->depth); gdk_drawable_set_colormap (GDK_DRAWABLE (pixmap), gtk_widget_get_colormap (window)); /* Draw the window */ |