File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -121,6 +121,13 @@ struct NavButtonsView: View {
121121 }
122122 }
123123 }
124+ . frame ( maxWidth: . infinity)
125+ . contentShape ( Rectangle ( ) )
126+ . onTapGesture ( count: 2 ) {
127+ if let window = NSApp . keyWindow {
128+ window. performZoom ( nil )
129+ }
130+ }
124131 . onAppear {
125132 tabWrapper. setContext ( browserManager: browserManager, windowState: windowState)
126133 updateCurrentTab ( )
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ struct SpacesListItem: View {
3838 // Fixed inner content size to avoid glyph cropping
3939 Text ( space. icon)
4040 . font ( . system( size: 14 ) )
41- . frame ( width: 16 , height: 16 )
41+ . frame ( width: 20 , height: 20 )
4242 } else {
4343 Image ( systemName: space. icon)
4444 . font ( . system( size: 14 ) )
You can’t perform that action at this time.
0 commit comments