From 9395369c63e1d740e689cdb6ce78c4594a1f2e2a Mon Sep 17 00:00:00 2001 From: Carlos Soriano Date: Thu, 8 Oct 2015 15:27:26 +0200 Subject: files-view: enable properties on all cases We changed the meaning of remote from being only network:// to be a lot of schemes. Thing is, the properties action was disabled for "remote", and now that means lot of locations. I think there is not enough reason to disable properties altogether, if the network:// file doesn't provide enough info, probably it should. --- src/nautilus-files-view.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/nautilus-files-view.c b/src/nautilus-files-view.c index a2992d08a..b9b10656f 100644 --- a/src/nautilus-files-view.c +++ b/src/nautilus-files-view.c @@ -6143,8 +6143,7 @@ real_update_actions_state (NautilusFilesView *view) can_paste_files_into = (!selection_contains_recent && selection_count == 1 && can_paste_into_file (NAUTILUS_FILE (selection->data))); - show_properties = !showing_remote_directory (view) && - (!NAUTILUS_IS_DESKTOP_CANVAS_VIEW (view) || selection_count > 0); + show_properties = !NAUTILUS_IS_DESKTOP_CANVAS_VIEW (view) || selection_count > 0; /* Right click actions */ /* Selection menu actions */ -- cgit v1.2.1