diff options
author | Alexander Larsson <alexl@redhat.com> | 2009-12-10 14:53:14 +0100 |
---|---|---|
committer | Alexander Larsson <alexl@redhat.com> | 2009-12-10 18:08:17 +0100 |
commit | c6ee7553fd029239eff50d32dbcb57223ffa185e (patch) | |
tree | cbdeb2b7eef797b0729b9472fbb5e57056312694 /src/nautilus-notebook.c | |
parent | 4b49aab5aa6a9ef9ab288ff2ce463affca1eacf2 (diff) | |
download | nautilus-c6ee7553fd029239eff50d32dbcb57223ffa185e.tar.gz |
Put tabs at the bottom
There is way to much visual clutter at the top already, with the location
bars and toolbars.
Diffstat (limited to 'src/nautilus-notebook.c')
-rw-r--r-- | src/nautilus-notebook.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nautilus-notebook.c b/src/nautilus-notebook.c index 7ee739634..a7e44a448 100644 --- a/src/nautilus-notebook.c +++ b/src/nautilus-notebook.c @@ -241,6 +241,7 @@ nautilus_notebook_init (NautilusNotebook *notebook) gtk_notebook_set_scrollable (GTK_NOTEBOOK (notebook), TRUE); gtk_notebook_set_show_border (GTK_NOTEBOOK (notebook), FALSE); gtk_notebook_set_show_tabs (GTK_NOTEBOOK (notebook), FALSE); + gtk_notebook_set_tab_pos (GTK_NOTEBOOK (notebook), GTK_POS_BOTTOM); g_signal_connect (notebook, "button-press-event", (GCallback)button_press_cb, NULL); |