diff -Nru nautilus-3.10.1/debian/changelog nautilus-3.10.1/debian/changelog --- nautilus-3.10.1/debian/changelog 2015-04-01 10:45:40.000000000 +0000 +++ nautilus-3.10.1/debian/changelog 2015-06-18 23:18:11.000000000 +0000 @@ -1,3 +1,11 @@ +nautilus (1:3.10.1-0ubuntu9.9) trusty; urgency=medium + + * debian/patches/git_folder_open_with.patch: + - restore open with action on directories, thanks Doug McMahon + (lp: #1026254) + + -- Sebastien Bacher Tue, 16 Jun 2015 15:09:37 +0200 + nautilus (1:3.10.1-0ubuntu9.8) trusty; urgency=medium * debian/patches/git_slot_order.patch: diff -Nru nautilus-3.10.1/debian/patches/git_folder_open_with.patch nautilus-3.10.1/debian/patches/git_folder_open_with.patch --- nautilus-3.10.1/debian/patches/git_folder_open_with.patch 1970-01-01 00:00:00.000000000 +0000 +++ nautilus-3.10.1/debian/patches/git_folder_open_with.patch 2015-06-16 13:24:16.000000000 +0000 @@ -0,0 +1,19 @@ +# Description: restore "open with" action on directories +# Upstream: code changed but there is a similar change in trunk +# +Index: nautilus-3.10.1/src/nautilus-view.c +=================================================================== +--- nautilus-3.10.1.orig/src/nautilus-view.c ++++ nautilus-3.10.1/src/nautilus-view.c +@@ -4538,8 +4538,9 @@ reset_open_with_menu (NautilusView *view + + file = NAUTILUS_FILE (node->data); + +- other_applications_visible &= (!nautilus_mime_file_opens_in_view (file) && +- !nautilus_file_is_nautilus_link (file)); ++ other_applications_visible &= ((!nautilus_mime_file_opens_in_view (file) && ++ !nautilus_file_is_nautilus_link (file)) || ++ nautilus_file_is_directory (file)); + } + + default_app = NULL; diff -Nru nautilus-3.10.1/debian/patches/series nautilus-3.10.1/debian/patches/series --- nautilus-3.10.1/debian/patches/series 2015-04-01 10:42:59.000000000 +0000 +++ nautilus-3.10.1/debian/patches/series 2015-06-16 13:10:36.000000000 +0000 @@ -46,3 +46,4 @@ git_nautilus-property-dialog-fix-user-list-for-owner-change.patch git_link_dnd.patch git_slot_order.patch +git_folder_open_with.patch