summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Soriano <csoriano@gnome.org>2015-10-08 15:27:26 +0200
committerCarlos Soriano <csoriano@gnome.org>2015-10-08 15:27:26 +0200
commit9395369c63e1d740e689cdb6ce78c4594a1f2e2a (patch)
tree26aabac9a8fc052e32cf88c16a6c3d4f2b68f39c
parentf329f501c9da08b8a85feb939593732167d27847 (diff)
downloadnautilus-9395369c63e1d740e689cdb6ce78c4594a1f2e2a.tar.gz
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.
-rw-r--r--src/nautilus-files-view.c3
1 files changed, 1 insertions, 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 */