feat: add Font Size, List Row Density, and Menu Bar Icon settings

This commit is contained in:
nimbold
2026-06-03 05:03:31 +03:30
parent 1f82d342e3
commit ff03a4cda5
5 changed files with 85 additions and 2 deletions
+2 -1
View File
@@ -526,6 +526,7 @@ struct DownloadTable: View {
}
private struct DownloadRow: View {
@EnvironmentObject private var settings: AppSettings
let item: DownloadItem
let priorityNumber: Int?
let visibleColumns: [DownloadColumn]
@@ -537,7 +538,7 @@ private struct DownloadRow: View {
ForEach(visibleColumns) { column in
cell(for: column)
.padding(.horizontal, 8)
.padding(.vertical, 8)
.padding(.vertical, settings.listRowDensity.verticalPadding)
.frame(width: columnWidth(column), alignment: alignment(for: column))
.clipped()
}