settings(apple): add message about shared directory support on macOS guests

Resolves #4594
This commit is contained in:
osy 2022-11-25 17:18:33 -08:00
parent b229b4a38c
commit 011bf94747
1 changed files with 3 additions and 0 deletions

View File

@ -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 ?? "")