@@ -99,8 +99,8 @@ class ThumbnailsView: NSVisualEffectView {
99
99
100
100
func updateItemsAndLayout( _ screen: NSScreen ) {
101
101
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 )
104
104
if Preferences . alignThumbnails == . center {
105
105
centerRows ( maxX)
106
106
}
@@ -116,8 +116,9 @@ class ThumbnailsView: NSVisualEffectView {
116
116
}
117
117
}
118
118
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)
121
122
let isLeftToRight = App . shared. userInterfaceLayoutDirection == . leftToRight
122
123
let startingX = isLeftToRight ? Appearance . interCellPadding : widthMax - Appearance. interCellPadding
123
124
var currentX = startingX
@@ -151,7 +152,7 @@ class ThumbnailsView: NSVisualEffectView {
151
152
window. rowIndex = rows. count - 1
152
153
}
153
154
scrollView. documentView!. subviews = newViews
154
- return ( maxX, maxY)
155
+ return ( maxX, maxY, labelHeight )
155
156
}
156
157
157
158
private func needNewLine( _ projectedX: CGFloat , _ widthMax: CGFloat ) -> Bool {
@@ -172,7 +173,7 @@ class ThumbnailsView: NSVisualEffectView {
172
173
App . shared. userInterfaceLayoutDirection == . leftToRight ? currentX : currentX - width
173
174
}
174
175
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 ) {
176
177
let heightMax = ThumbnailsPanel . maxThumbnailsHeight ( screen) . rounded ( )
177
178
178
179
ThumbnailsView . thumbnailsWidth = min ( maxX, widthMax)
@@ -183,8 +184,8 @@ class ThumbnailsView: NSVisualEffectView {
183
184
var originY = Appearance . windowPadding
184
185
if Preferences . appearanceStyle == . appIcons {
185
186
// 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
188
189
}
189
190
frame. size = NSSize ( width: frameWidth, height: frameHeight)
190
191
0 commit comments