chore: added new tab button inside tab overview 1626f92e
Steve · 2025-12-25 19:44 1 file(s) · +9 −0
Titan/Views/TabsListView.swift +9 −0
59 59
                    }
60 60
                }
61 61
62 +
                ToolbarItem(placement: .primaryAction) {
63 +
                    Button {
64 +
                        let newTab = tabManager.createTab()
65 +
                        onSelect(newTab)
66 +
                    } label: {
67 +
                        Image(systemName: "plus")
68 +
                    }
69 +
                }
70 +
62 71
                if tabManager.tabs.count > 1 {
63 72
                    ToolbarItem(placement: .primaryAction) {
64 73
                        EditButton()