diff options
author | lukefromdc <[email protected]> | 2016-12-21 13:58:07 -0500 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-12-29 22:01:12 +0100 |
commit | 57eb8a9e53e15c0098dac869c8b2d5eb2b703120 (patch) | |
tree | 8cfdd011576eeaaca9f116b3cb954a4698111c6b | |
parent | 921dbb418e1f7319d8d8100cc5cda4891e246c36 (diff) | |
download | caja-57eb8a9e53e15c0098dac869c8b2d5eb2b703120.tar.bz2 caja-57eb8a9e53e15c0098dac869c8b2d5eb2b703120.tar.xz |
Show "open with" tab in properties window when "open with" menu available
-rw-r--r-- | src/file-manager/fm-properties-window.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/file-manager/fm-properties-window.c b/src/file-manager/fm-properties-window.c index db5e173c..3bae51f2 100644 --- a/src/file-manager/fm-properties-window.c +++ b/src/file-manager/fm-properties-window.c @@ -6068,7 +6068,6 @@ is_a_special_file (CajaFile *file) { if (file == NULL || CAJA_IS_DESKTOP_ICON_FILE (file) || - caja_file_is_caja_link (file) || is_merged_trash_directory (file) || is_computer_directory (file)) { return TRUE; @@ -6082,7 +6081,7 @@ should_show_open_with (FMPropertiesWindow *window) CajaFile *file; /* Don't show open with tab for desktop special icons (trash, etc) - * or desktop files. We don't get the open-with menu for these anyway. + * We don't get the open-with menu for these anyway. * * Also don't show it for folders. Changing the default app for folders * leads to all sort of hard to understand errors. |