diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2014-06-29 10:04:54 +0000 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2014-06-29 10:04:54 +0000 |
| commit | af788b560d167a873036b0fae04f2a91f2cda9e5 (patch) | |
| tree | 51dece036218128dca61cae3f1ab3d4d13ce561d /shell/panel.c | |
| parent | f234933f0b9f9648d504543f3674f9e372406267 (diff) | |
| download | graynard-af788b560d167a873036b0fae04f2a91f2cda9e5.tar.gz graynard-af788b560d167a873036b0fae04f2a91f2cda9e5.zip | |
move favorite launcher to bottom
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 */ |
