From f7574dc63396bd4fbd2355e195e45bb0095a8b8d Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Sun, 15 Nov 2020 15:18:33 -0600 Subject: [PATCH] Tweak the sidebar image sizes so that they match the system apps as it looks like the HIG has the wrong values in it for sidebar image sizes --- Mac/MainWindow/Sidebar/Cell/SidebarCellAppearance.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mac/MainWindow/Sidebar/Cell/SidebarCellAppearance.swift b/Mac/MainWindow/Sidebar/Cell/SidebarCellAppearance.swift index c228d2255..7a082b434 100644 --- a/Mac/MainWindow/Sidebar/Cell/SidebarCellAppearance.swift +++ b/Mac/MainWindow/Sidebar/Cell/SidebarCellAppearance.swift @@ -22,14 +22,14 @@ struct SidebarCellAppearance: Equatable { imageSize = CGSize(width: 16, height: 16) textFieldFontSize = 11 case .large: - imageSize = CGSize(width: 24, height: 24) + imageSize = CGSize(width: 22, height: 22) if #available(macOS 11.0, *) { textFieldFontSize = 15 } else { textFieldFontSize = 13 } default: - imageSize = CGSize(width: 20, height: 20) + imageSize = CGSize(width: 19, height: 19) textFieldFontSize = 13 }