Corrects Extension accessibility labels

This commit is contained in:
Stuart Breckenridge 2020-11-03 13:02:46 +08:00
parent 144bf06703
commit 3928d0a025
1 changed files with 2 additions and 2 deletions

View File

@ -48,7 +48,7 @@ struct EnableExtensionPointView: View {
Text("Cancel")
.frame(width: 80)
})
.accessibility(label: Text("Add Account"))
.accessibility(label: Text("Add Extension"))
}
if #available(OSX 11.0, *) {
Button(action: {
@ -58,7 +58,7 @@ struct EnableExtensionPointView: View {
Text("Continue")
.frame(width: 80)
})
.help("Add Account")
.help("Add Extension")
.keyboardShortcut(.defaultAction)
} else {