From 275de77c8ba70c536ee8d8c53f23b52d3b47b1fd Mon Sep 17 00:00:00 2001 From: ericek111 Date: Wed, 19 Aug 2026 18:24:05 +0000 Subject: [PATCH] Bold the channel references in the log, as the client ones are Co-Authored-By: Claude Opus 5 --- .../swing/src/main/java/com/ts3client/ui/ChatPanel.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ts3-client/swing/src/main/java/com/ts3client/ui/ChatPanel.java b/ts3-client/swing/src/main/java/com/ts3client/ui/ChatPanel.java index f44aeb9..b266390 100644 --- a/ts3-client/swing/src/main/java/com/ts3client/ui/ChatPanel.java +++ b/ts3-client/swing/src/main/java/com/ts3client/ui/ChatPanel.java @@ -322,10 +322,10 @@ public final class ChatPanel extends JPanel { // Client references look exactly like a message author's name. css.addRule("a." + BBCode.IDENTITY_LINK_CLASS + " { color:" + hex(Theme.CHAT_NAME) + "; font-weight:bold; text-decoration:none; }"); - // Channel (and other TeamSpeak protocol) references, which the log leans on - // heavily: same weight as the text around them, but their own colour. + // Channel (and other TeamSpeak protocol) references stand out of a line the + // same way a client's name does. css.addRule("a." + BBCode.TS_LINK_CLASS - + " { color:" + hex(Theme.CHAT_NAME) + "; text-decoration:none; }"); + + " { color:" + hex(Theme.CHAT_NAME) + "; font-weight:bold; text-decoration:none; }"); // External links are underlined so they can't be mistaken for an identity. css.addRule("a." + BBCode.EXTERNAL_LINK_CLASS + " { color:" + hex(Theme.LINK) + "; text-decoration:underline; }");