Added underline to links in chat
[REVIEW] Links now have a blue underline to better indicate they are clickable. Preview: http://imgur.com/gQZEv4I
This commit is contained in:
parent
db0a77989b
commit
52cadd75f3
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.setAnchor(true);
|
||||
anchorFormat.setAnchorHref(url);
|
||||
anchorFormat.setUnderlineColor(Qt::blue);
|
||||
anchorFormat.setFontUnderline(true);
|
||||
|
||||
cursor.setCharFormat(anchorFormat);
|
||||
cursor.insertText(url);
|
||||
|
|
Loading…
Reference in a new issue