From af788b560d167a873036b0fae04f2a91f2cda9e5 Mon Sep 17 00:00:00 2001 From: schneefux Date: Sun, 29 Jun 2014 10:04:54 +0000 Subject: move favorite launcher to bottom --- shell/panel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'shell/panel.c') 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 */ -- cgit v1.3.1