Debug menu: add sessions icon and separator
parent
a8baf0ef45
commit
9131a69983
|
|
@ -44,7 +44,7 @@ struct MenuContent: View {
|
||||||
}
|
}
|
||||||
if self.state.debugPaneEnabled {
|
if self.state.debugPaneEnabled {
|
||||||
Menu("Debug") {
|
Menu("Debug") {
|
||||||
Menu("Sessions") {
|
Menu {
|
||||||
ForEach(self.sessionMenu) { row in
|
ForEach(self.sessionMenu) { row in
|
||||||
Menu(row.key) {
|
Menu(row.key) {
|
||||||
Menu("Thinking") {
|
Menu("Thinking") {
|
||||||
|
|
@ -86,7 +86,11 @@ struct MenuContent: View {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Divider()
|
||||||
|
} label: {
|
||||||
|
Label("Sessions", systemImage: "clock.arrow.circlepath")
|
||||||
}
|
}
|
||||||
|
Divider()
|
||||||
Button {
|
Button {
|
||||||
DebugActions.openConfigFolder()
|
DebugActions.openConfigFolder()
|
||||||
} label: {
|
} label: {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue