diff options
author | William Jon McCann <jmccann@redhat.com> | 2012-05-25 19:58:48 -0400 |
---|---|---|
committer | William Jon McCann <jmccann@redhat.com> | 2012-05-26 15:31:31 -0400 |
commit | b8d5b4a7bcf47ed34a6343c95bcc3b079255c0a0 (patch) | |
tree | 5a58d0fba28e18fea12894d10f8bd1499dddf4a2 /src/nautilus-notebook.c | |
parent | 3a9181eb9536050d9d6b77b3a986df65a92ab2ce (diff) | |
download | nautilus-b8d5b4a7bcf47ed34a6343c95bcc3b079255c0a0.tar.gz |
Remove extra panes
Extra Pane mode was somewhat useful before GNOME 3 had side by side window mode.
The combination of panes and tabs is just too much. It is inconsistent
with the file chooser and doesn't work well with touch. We would like to
add a more explicit copy/move feature shortly.
https://bugzilla.gnome.org/show_bug.cgi?id=676858
Diffstat (limited to 'src/nautilus-notebook.c')
-rw-r--r-- | src/nautilus-notebook.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nautilus-notebook.c b/src/nautilus-notebook.c index 743b89681..671695a1d 100644 --- a/src/nautilus-notebook.c +++ b/src/nautilus-notebook.c @@ -120,7 +120,7 @@ find_notebook_at_pointer (gint abs_x, gint abs_y) /* toplevel should be an NautilusWindow */ if (toplevel != NULL && NAUTILUS_IS_WINDOW (toplevel)) { - return NAUTILUS_NOTEBOOK (NAUTILUS_WINDOW (toplevel)->details->active_pane->notebook); + return NAUTILUS_NOTEBOOK (NAUTILUS_WINDOW (toplevel)->details->notebook); } return NULL; |