mirror of
https://github.com/XcodesOrg/XcodesApp.git
synced 2026-04-25 14:47:38 +00:00
Update some text to better suit HIG
Co-authored-by: Brandon Evans <brandon.evans@robotsandpencils.com>
This commit is contained in:
parent
fdb74ee8d9
commit
8df4bb59e0
2 changed files with 4 additions and 4 deletions
|
|
@ -111,7 +111,7 @@ struct CopyPathButton: View {
|
||||||
Button(action: copyPath) {
|
Button(action: copyPath) {
|
||||||
Text("Copy Path")
|
Text("Copy Path")
|
||||||
}
|
}
|
||||||
.help("Copy Path")
|
.help("Copy path")
|
||||||
}
|
}
|
||||||
|
|
||||||
private func copyPath() {
|
private func copyPath() {
|
||||||
|
|
|
||||||
|
|
@ -36,7 +36,7 @@ struct MainToolbarModifier: ViewModifier {
|
||||||
.foregroundColor(.accentColor)
|
.foregroundColor(.accentColor)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.help("Filter Installed Versions")
|
.help("Filter installed versions")
|
||||||
|
|
||||||
Button(action: { isShowingInfoPane.toggle() }) {
|
Button(action: { isShowingInfoPane.toggle() }) {
|
||||||
if isShowingInfoPane {
|
if isShowingInfoPane {
|
||||||
|
|
@ -47,12 +47,12 @@ struct MainToolbarModifier: ViewModifier {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.keyboardShortcut(KeyboardShortcut("i", modifiers: [.command, .option]))
|
.keyboardShortcut(KeyboardShortcut("i", modifiers: [.command, .option]))
|
||||||
.help("Info Pane")
|
.help("Show or hide the info pane")
|
||||||
|
|
||||||
TextField("Search...", text: $searchText)
|
TextField("Search...", text: $searchText)
|
||||||
.textFieldStyle(RoundedBorderTextFieldStyle())
|
.textFieldStyle(RoundedBorderTextFieldStyle())
|
||||||
.frame(width: 200)
|
.frame(width: 200)
|
||||||
.help("Search List")
|
.help("Search list")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue