|
@@ -210,7 +210,9 @@ import Cocoa
|
|
|
}
|
|
|
|
|
|
self.homeContentView.historyShowPathAction = { [unowned self] view, item in
|
|
|
- NSWorkspace.shared.open( item.url!.deletingLastPathComponent())
|
|
|
+ let isAccessFilePath = AppSandboxFileAccess().accessFileURL(item.url! as URL, persistPermission: true) {
|
|
|
+ NSWorkspace.shared.open( item.url!.deletingLastPathComponent())
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
self.homeContentView.historyRemoveAllFileAction = { [unowned self] view in
|