diff --git a/cockatrice/src/chatview.cpp b/cockatrice/src/chatview.cpp index ae157647..3166bc1c 100644 --- a/cockatrice/src/chatview.cpp +++ b/cockatrice/src/chatview.cpp @@ -77,6 +77,8 @@ void ChatView::appendUrlTag(QTextCursor &cursor, QString url) anchorFormat.setForeground(Qt::blue); anchorFormat.setAnchor(true); anchorFormat.setAnchorHref(url); + anchorFormat.setUnderlineColor(Qt::blue); + anchorFormat.setFontUnderline(true); cursor.setCharFormat(anchorFormat); cursor.insertText(url);