summaryrefslogtreecommitdiff
path: root/src/nautilus-navigation-window.c
diff options
context:
space:
mode:
authorDave Camp <dave@novell.com>2004-07-22 03:57:44 +0000
committerDave Camp <campd@src.gnome.org>2004-07-22 03:57:44 +0000
commiteb6a30500dac5443c9ec4f486ec47189e7cc7686 (patch)
tree58f927508ef3f2dbe3b5c22d9db30f90a86d1bc0 /src/nautilus-navigation-window.c
parentd8062f4a39e78a64fb4406d685b715543b5800da (diff)
downloadnautilus-eb6a30500dac5443c9ec4f486ec47189e7cc7686.tar.gz
Merged the nautilus-new-mime branch.
2004-07-21 Dave Camp <dave@novell.com> * Merged the nautilus-new-mime branch.
Diffstat (limited to 'src/nautilus-navigation-window.c')
-rw-r--r--src/nautilus-navigation-window.c47
1 files changed, 0 insertions, 47 deletions
diff --git a/src/nautilus-navigation-window.c b/src/nautilus-navigation-window.c
index 8db7664a2..c7246c784 100644
--- a/src/nautilus-navigation-window.c
+++ b/src/nautilus-navigation-window.c
@@ -619,41 +619,6 @@ create_view_as_menu_item (NautilusWindow *window,
return menu_item;
}
-static GtkWidget *
-new_gtk_separator (void)
-{
- GtkWidget *result;
-
- result = gtk_menu_item_new ();
- gtk_widget_show (result);
- gtk_widget_set_sensitive (result, FALSE);
-
- return result;
-}
-
-static void
-view_as_menu_choose_view_callback (GtkWidget *widget, gpointer data)
-{
- NautilusWindow *window;
-
- g_assert (GTK_IS_MENU_ITEM (widget));
- g_assert (NAUTILUS_IS_WINDOW (data));
-
- window = NAUTILUS_WINDOW (data);
-
- /* Set the option menu back to its previous setting (Don't
- * leave it on this dialog-producing "View as..."
- * setting). If the menu choice causes a content view change,
- * this will be updated again later, in
- * nautilus_window_load_view_as_menus. Do this right away so
- * the user never sees the option menu set to "View as
- * Other...".
- */
- load_view_as_menu (window);
-
- nautilus_window_show_view_as_dialog (window);
-}
-
static void
load_view_as_menu (NautilusWindow *window)
{
@@ -692,18 +657,6 @@ load_view_as_menu (NautilusWindow *window)
selected_index = index;
}
- /* Add/Show separator before "View as..." if there are any other viewers in menu. */
- if (window->details->short_list_viewers != NULL) {
- gtk_menu_shell_append (GTK_MENU_SHELL (new_menu), new_gtk_separator ());
- }
-
- /* Add "View as..." extra bonus choice. */
- menu_item = gtk_menu_item_new_with_label (_("View as..."));
- g_signal_connect_object (menu_item, "activate",
- G_CALLBACK (view_as_menu_choose_view_callback), window, 0);
- gtk_widget_show (menu_item);
- gtk_menu_shell_append (GTK_MENU_SHELL (new_menu), menu_item);
-
/* We create and attach a new menu here because adding/removing
* items from existing menu screws up the size of the option menu.
*/