set the event box' window invisible so we get the right background with

2006-06-15  Michael Natterer  <mitch@gimp.org>

	* app/widgets/gimpdockbook.c (gimp_dockbook_get_tab_widget): set
	the event box' window invisible so we get the right background
	with all themes.
This commit is contained in:
Michael Natterer 2006-06-15 10:44:24 +00:00 committed by Michael Natterer
parent 97e319d56a
commit 1a635e06a0
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2006-06-15 Michael Natterer <mitch@gimp.org>
* app/widgets/gimpdockbook.c (gimp_dockbook_get_tab_widget): set
the event box' window invisible so we get the right background
with all themes.
2006-06-14 Bill Skaggs <weskaggs@primate.ucdavis.edu>
* app/tools/gimprectangleselecttool.c: Fix sporadic crash

View file

@ -398,6 +398,7 @@ gimp_dockbook_get_tab_widget (GimpDockbook *dockbook,
GtkWidget *event_box;
event_box = gtk_event_box_new ();
gtk_event_box_set_visible_window (GTK_EVENT_BOX (event_box), FALSE);
gtk_container_add (GTK_CONTAINER (event_box), tab_widget);
gtk_widget_show (tab_widget);