an experimental irc client

ui: draw unread with bold

+4 -1
+4 -1
src/irc.zig
··· 392 392 }, 393 393 } 394 394 } 395 - if (self.has_unread) style.fg = .{ .index = 4 }; 395 + if (self.has_unread) { 396 + style.fg = .{ .index = 4 }; 397 + style.bold = true; 398 + } 396 399 const prefix: vxfw.RichText.TextSpan = if (self.has_unread_highlight) 397 400 .{ .text = " ●︎", .style = .{ .fg = .{ .index = 1 } } } 398 401 else