summaryrefslogtreecommitdiff
path: root/shell/panel.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/panel.c')
-rw-r--r--shell/panel.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/shell/panel.c b/shell/panel.c
index 60f2960..ca6047f 100644
--- a/shell/panel.c
+++ b/shell/panel.c
@@ -93,19 +93,10 @@ maynard_panel_constructed (GObject *object)
gtk_widget_get_style_context (GTK_WIDGET (self)),
"maynard-panel");
- /* main vbox */
+ /* main hbox */
main_box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
gtk_container_add (GTK_CONTAINER (self), main_box);
- /* GtkBoxes seem to eat up enter/leave events, so let's use an event
- * box for the entire thing. */
- ebox = gtk_event_box_new ();
- gtk_box_pack_start (GTK_BOX (main_box), ebox, FALSE, FALSE, 0);
- widget_connect_enter_signal (self, ebox);
-
- menu_box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
- gtk_container_add (GTK_CONTAINER (ebox), menu_box);
-
/* favorites */
ebox = gtk_event_box_new ();
gtk_box_pack_start (GTK_BOX (main_box), ebox, FALSE, FALSE, 0);