settings(apple): add message about shared directory support on macOS guests
Resolves #4594
This commit is contained in:
parent
b229b4a38c
commit
011bf94747
|
@ -26,6 +26,9 @@ struct VMConfigAppleSharingView: View {
|
|||
|
||||
var body: some View {
|
||||
Form {
|
||||
if config.system.boot.operatingSystem == .macOS {
|
||||
Text("Shared directories in macOS VMs are only available in macOS 13 and later.")
|
||||
}
|
||||
Table(config.sharedDirectories, selection: $selectedID) {
|
||||
TableColumn("Shared Path") { share in
|
||||
Text(share.directoryURL?.path ?? "")
|
||||
|
|
Loading…
Reference in New Issue