diff --git a/source/blender/blenlib/intern/storage_apple.mm b/source/blender/blenlib/intern/storage_apple.mm index 7cb8ca28e24..0cc246b8d4f 100644 --- a/source/blender/blenlib/intern/storage_apple.mm +++ b/source/blender/blenlib/intern/storage_apple.mm @@ -87,7 +87,7 @@ eFileAttributes BLI_file_attributes(const char *path) if (is_readable && !is_writable) { ret |= FILE_ATTR_READONLY; } - if (is_readable) { + if (!is_readable) { ret |= FILE_ATTR_SYSTEM; } }