diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2014-07-02 15:14:09 +0000 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2014-07-02 15:14:09 +0000 |
| commit | a72016ab08dcd616f67e6719462f34e5160e8f96 (patch) | |
| tree | 523f7243ee6387bb281bf52aabfcc14c5ba06e9f | |
| parent | 21a49fb3c55ba1818906e3306d51e307df3787ad (diff) | |
| download | graynard-a72016ab08dcd616f67e6719462f34e5160e8f96.tar.gz graynard-a72016ab08dcd616f67e6719462f34e5160e8f96.zip | |
cleanup
| -rw-r--r-- | shell/panel.c | 11 |
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); |
