Debug menu: add sessions icon and separator

main
Peter Steinberger 2025-12-09 21:40:04 +01:00
parent a8baf0ef45
commit 9131a69983
1 changed files with 5 additions and 1 deletions

View File

@ -44,7 +44,7 @@ struct MenuContent: View {
}
if self.state.debugPaneEnabled {
Menu("Debug") {
Menu("Sessions") {
Menu {
ForEach(self.sessionMenu) { row in
Menu(row.key) {
Menu("Thinking") {
@ -86,7 +86,11 @@ struct MenuContent: View {
}
}
}
Divider()
} label: {
Label("Sessions", systemImage: "clock.arrow.circlepath")
}
Divider()
Button {
DebugActions.openConfigFolder()
} label: {