diff options
Diffstat (limited to 'shell/panel.c')
| -rw-r--r-- | shell/panel.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/panel.c b/shell/panel.c index 5f7adfa..60f2960 100644 --- a/shell/panel.c +++ b/shell/panel.c @@ -94,7 +94,7 @@ maynard_panel_constructed (GObject *object) "maynard-panel"); /* main vbox */ - main_box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0); + 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 @@ -103,7 +103,7 @@ maynard_panel_constructed (GObject *object) 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_HORIZONTAL, 0); + menu_box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0); gtk_container_add (GTK_CONTAINER (ebox), menu_box); /* favorites */ |
