diff options
author | Andy Hertzfeld <andy@src.gnome.org> | 2000-09-08 00:27:45 +0000 |
---|---|---|
committer | Andy Hertzfeld <andy@src.gnome.org> | 2000-09-08 00:27:45 +0000 |
commit | bca62084f7a225fe4afa830810a013c149594345 (patch) | |
tree | db323b7d0d1db07e59e5fdebe1d5fbf077d06187 /src/nautilus-information-panel.c | |
parent | d8bf363f15fcfe26968830e40a16989baec9cbac (diff) | |
download | nautilus-bca62084f7a225fe4afa830810a013c149594345.tar.gz |
fixed bug 1246, by moving the sidebar event initialization code from the
fixed bug 1246, by moving the sidebar event initialization code from
the nautilus window class to the sidebar itself.
fixed bug 838, zoom control doesn't prelight, by receiving mouse
motion events and prelighting as appropriate.
Diffstat (limited to 'src/nautilus-information-panel.c')
-rw-r--r-- | src/nautilus-information-panel.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nautilus-information-panel.c b/src/nautilus-information-panel.c index 5d16bc8c5..0442fba76 100644 --- a/src/nautilus-information-panel.c +++ b/src/nautilus-information-panel.c @@ -218,6 +218,9 @@ nautilus_sidebar_initialize (GtkObject *object) /* load the default background from the current theme */ nautilus_sidebar_read_theme(sidebar); + + /* enable mouse tracking */ + gtk_widget_add_events (GTK_WIDGET (sidebar), GDK_POINTER_MOTION_MASK); /* create the container box */ sidebar->details->container = GTK_VBOX (gtk_vbox_new (FALSE, 0)); |