From 6a5d4b3c1dfa955d1265eeb1bba7b08d35c06da0 Mon Sep 17 00:00:00 2001 From: James Brechtel Date: Sun, 14 Jun 2026 15:33:02 -0400 Subject: [PATCH] fix: remove leading space from chat list row, aligning with header MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The row started with ' ●' (space+fringe) but the header starts with ' U' (two spaces). Removing the extra space brings the row columns in line with the header columns, matching the mockup. --- noise-chat-list.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noise-chat-list.el b/noise-chat-list.el index 275c1bb..2f9d575 100644 --- a/noise-chat-list.el +++ b/noise-chat-list.el @@ -109,7 +109,7 @@ CONV is a hash table with string keys from noise-db." (t (concat sender ": " preview)))) (preview-str (truncate-string-to-width preview-prefix 36 nil nil "…")) (time-str (noise-chat-list--format-time timestamp))) - (concat " " (propertize fringe 'face 'warning) " " unread-str " " + (concat (propertize fringe 'face 'warning) " " unread-str " " (propertize (format "%-18s" name-str) 'face 'bold) " " preview-str " " (propertize time-str 'face 'shadow))))