summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnders Carlsson <andersca@gnome.org>2004-01-03 19:05:32 +0000
committerAnders Carlsson <andersca@src.gnome.org>2004-01-03 19:05:32 +0000
commit54e7a559c7cbe2398f8bd263175ae9ca344783dd (patch)
tree98a8158734717120c5b36927914bc1692beaa3e7
parent9ade106bfdb123a7b1f8f0cc6f0c21178d5c2b86 (diff)
downloadnautilus-54e7a559c7cbe2398f8bd263175ae9ca344783dd.tar.gz
Don't use EelInputEventBox, we can use GtkEventBox now instead.
2004-01-03 Anders Carlsson <andersca@gnome.org> * src/nautilus-location-bar.c: (nautilus_location_bar_init): * src/nautilus-location-entry.c: Don't use EelInputEventBox, we can use GtkEventBox now instead.
-rw-r--r--ChangeLog6
-rw-r--r--src/nautilus-location-bar.c5
-rw-r--r--src/nautilus-location-entry.c1
3 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index fbd7ce9ec..0e8128f4d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2004-01-03 Anders Carlsson <andersca@gnome.org>
+ * src/nautilus-location-bar.c: (nautilus_location_bar_init):
+ * src/nautilus-location-entry.c:
+ Don't use EelInputEventBox, we can use GtkEventBox now instead.
+
+2004-01-03 Anders Carlsson <andersca@gnome.org>
+
* components/adapter/nautilus-adapter.c: (nautilus_adapter_new):
* src/nautilus-navigation-bar.c:
* src/nautilus-navigation-bar.h:
diff --git a/src/nautilus-location-bar.c b/src/nautilus-location-bar.c
index afbdda4c5..12fe82b23 100644
--- a/src/nautilus-location-bar.c
+++ b/src/nautilus-location-bar.c
@@ -39,7 +39,6 @@
#include <eel/eel-accessibility.h>
#include <eel/eel-glib-extensions.h>
#include <eel/eel-gtk-macros.h>
-#include <eel/eel-input-event-box.h>
#include <eel/eel-stock-dialogs.h>
#include <eel/eel-string.h>
#include <eel/eel-vfs-extensions.h>
@@ -370,7 +369,9 @@ nautilus_location_bar_init (NautilusLocationBar *bar)
hbox = gtk_hbox_new (0, FALSE);
- event_box = eel_input_event_box_new ();
+ event_box = gtk_event_box_new ();
+ gtk_event_box_set_visible_window (GTK_EVENT_BOX (event_box), FALSE);
+
gtk_container_set_border_width (GTK_CONTAINER (event_box),
GNOME_PAD_SMALL);
label = gtk_label_new (LOCATION_LABEL);
diff --git a/src/nautilus-location-entry.c b/src/nautilus-location-entry.c
index 623f2fa99..f7e4a4463 100644
--- a/src/nautilus-location-entry.c
+++ b/src/nautilus-location-entry.c
@@ -39,7 +39,6 @@
#include <eel/eel-gtk-macros.h>
#include <eel/eel-stock-dialogs.h>
#include <eel/eel-string.h>
-#include <eel/eel-input-event-box.h>
#include <eel/eel-vfs-extensions.h>
#include <gtk/gtkdnd.h>
#include <gtk/gtksignal.h>