Modified Files: ChangeLog src/nautilus-desktop-window.c Patch for bug

Modified Files:
	ChangeLog src/nautilus-desktop-window.c
Patch for bug #85784
This commit is contained in:
Gregory Merchan 2002-06-29 03:58:37 +00:00
parent 1fc344eb19
commit 65790a7dfc
2 changed files with 16 additions and 6 deletions

View file

@ -1,3 +1,10 @@
2002-06-29 Gregory Merchan <merchan@phys.lsu.edu>
* src/nautilus-desktop-window.c:
Call gdk_lower_window on map to not cover existing windows.
Should alleviate bug #85784, but note that a window manager
could always interfere.
2002-06-28 Christian Rose <menthos@menthos.com>
* src/nautilus-bookmarks-window.c,

View file

@ -247,16 +247,19 @@ set_window_background (GtkWidget *widget,
pixmap, pixel);
}
}
#endif
static void
map (GtkWidget *widget)
{
/* Disable for now, see above for comments */
#if 0
set_window_background (widget, FALSE, FALSE, None, 0);
#endif
/* Chain up to realize our children */
GTK_WIDGET_CLASS (parent_class)->map (widget);
gdk_window_lower (widget->window);
}
#endif
static void
set_wmspec_desktop_hint (GdkWindow *window)
@ -308,10 +311,10 @@ nautilus_desktop_window_class_init (NautilusDesktopWindowClass *class)
{
G_OBJECT_CLASS (class)->finalize = finalize;
GTK_WIDGET_CLASS (class)->realize = realize;
/* Disable for now, see above for comments */
#if 0
GTK_WIDGET_CLASS (class)->map = map;
#endif
NAUTILUS_WINDOW_CLASS (class)->add_current_location_to_history_list
= real_add_current_location_to_history_list;
}