We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0be252 commit 7eb5a8fCopy full SHA for 7eb5a8f
1 file changed
Xcodes/Frontend/XcodeList/MainToolbar.swift
@@ -13,12 +13,12 @@ struct MainToolbarModifier: ViewModifier {
13
}
14
15
private var toolbar: some ToolbarContent {
16
- ToolbarItemGroup(placement: .status) {
+ ToolbarItemGroup {
17
Button(action: { appState.presentedSheet = .signIn }, label: {
18
Label("Login", systemImage: "person.circle")
19
})
20
.help("LoginDescription")
21
-
+
22
ProgressButton(
23
isInProgress: appState.isUpdating,
24
action: appState.update
@@ -85,7 +85,7 @@ struct MainToolbarModifier: ViewModifier {
85
86
.keyboardShortcut(KeyboardShortcut("i", modifiers: [.command, .option]))
87
.help("InfoDescription")
88
89
Button(action: {
90
if #available(macOS 13, *) {
91
NSApp.sendAction(Selector(("showSettingsWindow:")), to: nil, from: nil)
0 commit comments