Skip to content

Commit 7eb5a8f

Browse files
committed
fix Ventura toolbar placement
1 parent e0be252 commit 7eb5a8f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Xcodes/Frontend/XcodeList/MainToolbar.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ struct MainToolbarModifier: ViewModifier {
1313
}
1414

1515
private var toolbar: some ToolbarContent {
16-
ToolbarItemGroup(placement: .status) {
16+
ToolbarItemGroup {
1717
Button(action: { appState.presentedSheet = .signIn }, label: {
1818
Label("Login", systemImage: "person.circle")
1919
})
2020
.help("LoginDescription")
21-
21+
2222
ProgressButton(
2323
isInProgress: appState.isUpdating,
2424
action: appState.update
@@ -85,7 +85,7 @@ struct MainToolbarModifier: ViewModifier {
8585
}
8686
.keyboardShortcut(KeyboardShortcut("i", modifiers: [.command, .option]))
8787
.help("InfoDescription")
88-
88+
8989
Button(action: {
9090
if #available(macOS 13, *) {
9191
NSApp.sendAction(Selector(("showSettingsWindow:")), to: nil, from: nil)

0 commit comments

Comments
 (0)