fix: remove leading space from chat list row, aligning with header
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.
This commit is contained in:
+1
-1
@@ -109,7 +109,7 @@ CONV is a hash table with string keys from noise-db."
|
|||||||
(t (concat sender ": " preview))))
|
(t (concat sender ": " preview))))
|
||||||
(preview-str (truncate-string-to-width preview-prefix 36 nil nil "…"))
|
(preview-str (truncate-string-to-width preview-prefix 36 nil nil "…"))
|
||||||
(time-str (noise-chat-list--format-time timestamp)))
|
(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) " "
|
(propertize (format "%-18s" name-str) 'face 'bold) " "
|
||||||
preview-str " "
|
preview-str " "
|
||||||
(propertize time-str 'face 'shadow))))
|
(propertize time-str 'face 'shadow))))
|
||||||
|
|||||||
Reference in New Issue
Block a user