From 1a51d5204774890f27f581cb75786f45c2fb294c Mon Sep 17 00:00:00 2001 From: jeffvli Date: Mon, 9 Feb 2026 21:15:12 -0800 Subject: [PATCH] remove custom monospace font columns --- .../item-list/item-detail-list/item-detail-list.tsx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/renderer/components/item-list/item-detail-list/item-detail-list.tsx b/src/renderer/components/item-list/item-detail-list/item-detail-list.tsx index 09b89635a..bb5001bfb 100644 --- a/src/renderer/components/item-list/item-detail-list/item-detail-list.tsx +++ b/src/renderer/components/item-list/item-detail-list/item-detail-list.tsx @@ -306,10 +306,6 @@ const TrackRow = memo( const { fixedWidth, isFixedColumn } = getTrackColumnFixed(col.id); const style: React.CSSProperties = { flex: isFixedColumn ? `0 0 ${fixedWidth}px` : `${percent} 1 0`, - fontFamily: - col.id === TableColumn.DURATION || col.id === TableColumn.TRACK_NUMBER - ? 'monospace' - : undefined, minWidth: isFixedColumn ? fixedWidth : 0, textAlign: textAlignFromAlign(col.align), };