Skip to content

Commit 5bf4732

Browse files
committed
fix: improve label display in app-icons style
1 parent 538e258 commit 5bf4732

File tree

4 files changed

+16
-24
lines changed

4 files changed

+16
-24
lines changed

src/ui/main-window/ThumbnailFontIconView.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class ThumbnailFontIconView: ThumbnailTitleView {
2121
color: NSColor = Appearance.fontColor,
2222
shadow: NSShadow? = ThumbnailView.makeShadow(Appearance.indicatedIconShadowColor)) {
2323
// This helps SF symbols display vertically centered and not clipped at the top
24-
self.init(size, shadow: shadow, font: NSFont(name: "SF Pro Text", size: (size * 0.85).rounded())!)
24+
self.init(shadow: shadow, font: NSFont(name: "SF Pro Text", size: (size * 0.85).rounded())!)
2525
stringValue = symbol.rawValue
2626
textColor = color
2727
addOrUpdateConstraint(widthAnchor, cell!.cellSize.width)

src/ui/main-window/ThumbnailTitleView.swift

+1-9
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import Cocoa
22

33
class ThumbnailTitleView: NSTextField {
4-
convenience init(_ height: CGFloat, shadow: NSShadow? = ThumbnailView.makeShadow(Appearance.titleShadowColor), font: NSFont = Appearance.font) {
4+
convenience init(shadow: NSShadow?, font: NSFont) {
55
self.init(labelWithString: "")
66
self.font = font
77
textColor = Appearance.fontColor
@@ -28,12 +28,4 @@ class ThumbnailTitleView: NSTextField {
2828
}
2929
return .byTruncatingHead
3030
}
31-
32-
static func extraLineSpacing(for fontSize: CGFloat) -> CGFloat {
33-
return fontSize * 0.2
34-
}
35-
36-
static func maxHeight() -> CGFloat {
37-
return Appearance.fontHeight + extraLineSpacing(for: Appearance.fontHeight)
38-
}
3931
}

src/ui/main-window/ThumbnailView.swift

+5-6
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class ThumbnailView: NSStackView {
77
var windowlessIcon = NSImageView()
88
var thumbnailContainer: NSStackView!
99
var appIcon = NSImageView()
10-
var label = ThumbnailTitleView(Appearance.fontHeight)
10+
var label = ThumbnailTitleView(shadow: ThumbnailView.makeShadow(Appearance.titleShadowColor), font: Appearance.font)
1111
var fullscreenIcon = ThumbnailFontIconView(symbol: .circledPlusSign, tooltip: NSLocalizedString("Window is fullscreen", comment: ""))
1212
var minimizedIcon = ThumbnailFontIconView(symbol: .circledMinusSign, tooltip: NSLocalizedString("Window is minimized", comment: ""))
1313
var hiddenIcon = ThumbnailFontIconView(symbol: .circledSlashSign, tooltip: NSLocalizedString("App is hidden", comment: ""))
@@ -84,8 +84,7 @@ class ThumbnailView: NSStackView {
8484
vStackView.leadingAnchor.constraint(equalTo: leadingAnchor),
8585
vStackView.trailingAnchor.constraint(equalTo: trailingAnchor),
8686
vStackView.topAnchor.constraint(equalTo: topAnchor),
87-
label.topAnchor.constraint(equalTo: vStackView.bottomAnchor, constant: Appearance.intraCellPadding),
88-
bottomAnchor.constraint(equalTo: label.bottomAnchor, constant: Appearance.intraCellPadding)
87+
label.topAnchor.constraint(equalTo: vStackView.bottomAnchor),
8988
])
9089
} else {
9190
hStackView = NSStackView(views: [appIcon, label, hiddenIcon, fullscreenIcon, minimizedIcon, spaceIcon])
@@ -579,15 +578,15 @@ class ThumbnailView: NSStackView {
579578
return NSSize(width: Appearance.iconSize, height: Appearance.iconSize)
580579
}
581580

582-
static func height(_ screen: NSScreen) -> CGFloat {
581+
static func height(_ screen: NSScreen, _ labelHeight: CGFloat) -> CGFloat {
583582
let topBottomEdgeInsetsSize = ThumbnailView.getTopBottomEdgeInsetsSize()
584583
if Preferences.appearanceStyle == .titles {
585-
return max(ThumbnailView.iconSize(screen).height, ThumbnailTitleView.maxHeight()) + topBottomEdgeInsetsSize
584+
return max(ThumbnailView.iconSize(screen).height, labelHeight) + topBottomEdgeInsetsSize
586585
} else if Preferences.appearanceStyle == .appIcons {
587586
return ThumbnailView.iconSize(screen).height
588587
+ topBottomEdgeInsetsSize
589588
+ Appearance.intraCellPadding
590-
+ ThumbnailTitleView.maxHeight()
589+
+ labelHeight
591590
+ Appearance.intraCellPadding
592591
}
593592
return ThumbnailView.maxThumbnailHeight(screen).rounded(.down)

src/ui/main-window/ThumbnailsView.swift

+9-8
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ class ThumbnailsView: NSVisualEffectView {
9999

100100
func updateItemsAndLayout(_ screen: NSScreen) {
101101
let widthMax = ThumbnailsPanel.maxThumbnailsWidth(screen).rounded()
102-
if let (maxX, maxY) = layoutThumbnailViews(screen, widthMax) {
103-
layoutParentViews(screen, maxX, widthMax, maxY)
102+
if let (maxX, maxY, labelHeight) = layoutThumbnailViews(screen, widthMax) {
103+
layoutParentViews(screen, maxX, widthMax, maxY, labelHeight)
104104
if Preferences.alignThumbnails == .center {
105105
centerRows(maxX)
106106
}
@@ -116,8 +116,9 @@ class ThumbnailsView: NSVisualEffectView {
116116
}
117117
}
118118

119-
private func layoutThumbnailViews(_ screen: NSScreen, _ widthMax: CGFloat) -> (CGFloat, CGFloat)? {
120-
let height = ThumbnailView.height(screen)
119+
private func layoutThumbnailViews(_ screen: NSScreen, _ widthMax: CGFloat) -> (CGFloat, CGFloat, CGFloat)? {
120+
let labelHeight = ThumbnailsView.recycledViews.first!.label.cell!.cellSize.height
121+
let height = ThumbnailView.height(screen, labelHeight)
121122
let isLeftToRight = App.shared.userInterfaceLayoutDirection == .leftToRight
122123
let startingX = isLeftToRight ? Appearance.interCellPadding : widthMax - Appearance.interCellPadding
123124
var currentX = startingX
@@ -151,7 +152,7 @@ class ThumbnailsView: NSVisualEffectView {
151152
window.rowIndex = rows.count - 1
152153
}
153154
scrollView.documentView!.subviews = newViews
154-
return (maxX, maxY)
155+
return (maxX, maxY, labelHeight)
155156
}
156157

157158
private func needNewLine(_ projectedX: CGFloat, _ widthMax: CGFloat) -> Bool {
@@ -172,7 +173,7 @@ class ThumbnailsView: NSVisualEffectView {
172173
App.shared.userInterfaceLayoutDirection == .leftToRight ? currentX : currentX - width
173174
}
174175

175-
private func layoutParentViews(_ screen: NSScreen, _ maxX: CGFloat, _ widthMax: CGFloat, _ maxY: CGFloat) {
176+
private func layoutParentViews(_ screen: NSScreen, _ maxX: CGFloat, _ widthMax: CGFloat, _ maxY: CGFloat, _ labelHeight: CGFloat) {
176177
let heightMax = ThumbnailsPanel.maxThumbnailsHeight(screen).rounded()
177178

178179
ThumbnailsView.thumbnailsWidth = min(maxX, widthMax)
@@ -183,8 +184,8 @@ class ThumbnailsView: NSVisualEffectView {
183184
var originY = Appearance.windowPadding
184185
if Preferences.appearanceStyle == .appIcons {
185186
// If there is title under the icon on the last line, the height of the title needs to be subtracted.
186-
frameHeight = frameHeight - Appearance.intraCellPadding - ThumbnailTitleView.maxHeight()
187-
originY = originY - Appearance.intraCellPadding - ThumbnailTitleView.maxHeight()
187+
frameHeight = frameHeight - Appearance.intraCellPadding - labelHeight
188+
originY = originY - Appearance.intraCellPadding - labelHeight
188189
}
189190
frame.size = NSSize(width: frameWidth, height: frameHeight)
190191

0 commit comments

Comments
 (0)