diff options
author | mouse <[email protected]> | 2021-10-11 23:57:05 +0800 |
---|---|---|
committer | GitHub <[email protected]> | 2021-10-11 17:57:05 +0200 |
commit | 1942f0a67eb1e0f4a7d4750463972ab545e795e8 (patch) | |
tree | 1eaabd10e7511cd1928fe54d0b0d1a9c87db81ca | |
parent | 651bded364f54446399a6bfc4d7d7a9cc5b8e5ef (diff) | |
download | caja-1942f0a67eb1e0f4a7d4750463972ab545e795e8.tar.bz2 caja-1942f0a67eb1e0f4a7d4750463972ab545e795e8.tar.xz |
Fix Caja does not show icons of application launchers
in /usr/share/applications
and asks user for confirmation on launch of desktop-files here
-rw-r--r-- | libcaja-private/caja-directory-async.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcaja-private/caja-directory-async.c b/libcaja-private/caja-directory-async.c index 0c9a6ba7..8a9c021c 100644 --- a/libcaja-private/caja-directory-async.c +++ b/libcaja-private/caja-directory-async.c @@ -3850,7 +3850,7 @@ is_link_trusted (CajaFile *file, return TRUE; } - if (caja_file_can_execute (file) && caja_file_is_local (file)) + if (caja_file_is_local (file)) { GFile *location; |