an experimental irc client

ui: draw unread with bold

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