File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,6 @@ struct StatusBarIcon: View {
65
65
return newImage
66
66
}
67
67
68
-
69
68
var body : some View {
70
69
// Center inside the status bar button area
71
70
ZStack ( alignment: . bottomLeading) {
@@ -85,12 +84,12 @@ struct StatusBarIcon: View {
85
84
let side = NSStatusBar . system. thickness
86
85
// Make the overlay small relative to the bar size; keep readable
87
86
let overlaySide = max ( 10 , floor ( side * 0.55 ) )
88
- // Small colored status dot in the bottom-left corner
89
- Circle ( )
90
- . fill ( overlayColor)
91
- . frame ( width: overlaySide, height: overlaySide)
92
- . padding ( 2 )
93
- . accessibilityHidden ( true )
87
+ // Small colored status dot in the bottom-left corner
88
+ Circle ( )
89
+ . fill ( overlayColor)
90
+ . frame ( width: overlaySide, height: overlaySide)
91
+ . padding ( 2 )
92
+ . accessibilityHidden ( true )
94
93
}
95
94
// Force refresh when running state or nonce changes
96
95
. id ( statusBarModel. refreshNonce ^ ( statusBarModel. isRunning ? 1 : 0 ) )
You can’t perform that action at this time.
0 commit comments