[nautilus] files-view: enable properties on all cases



commit 9395369c63e1d740e689cdb6ce78c4594a1f2e2a
Author: Carlos Soriano <csoriano gnome org>
Date:   Thu Oct 8 15:27:26 2015 +0200

    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 files changed, 1 insertions(+), 2 deletions(-)
---
diff --git a/src/nautilus-files-view.c b/src/nautilus-files-view.c
index a2992d0..b9b1065 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 */


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]