Merge pull request #463 from poixen/chatlinkunderline
Added underline to links in chat
This commit is contained in:
commit
0be45e3969
1 changed files with 2 additions and 0 deletions
|
@ -77,6 +77,8 @@ void ChatView::appendUrlTag(QTextCursor &cursor, QString url)
|
||||||
anchorFormat.setForeground(Qt::blue);
|
anchorFormat.setForeground(Qt::blue);
|
||||||
anchorFormat.setAnchor(true);
|
anchorFormat.setAnchor(true);
|
||||||
anchorFormat.setAnchorHref(url);
|
anchorFormat.setAnchorHref(url);
|
||||||
|
anchorFormat.setUnderlineColor(Qt::blue);
|
||||||
|
anchorFormat.setFontUnderline(true);
|
||||||
|
|
||||||
cursor.setCharFormat(anchorFormat);
|
cursor.setCharFormat(anchorFormat);
|
||||||
cursor.insertText(url);
|
cursor.insertText(url);
|
||||||
|
|
Loading…
Reference in a new issue