diff options
author | Kevin Smith <git@kismith.co.uk> | 2012-04-23 14:05:29 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2012-04-23 14:07:15 (GMT) |
commit | aed9957d22a4fa2e64df08a0e5ddfdbf309f130a (patch) | |
tree | ee1bfdbffcdbd11ec23d3a5ed25eabd53e11c0c5 /Swift/QtUI/ChatSnippet.cpp | |
parent | 18f4f0ba13bbfe901dae44e95d869ba0425e93c7 (diff) | |
download | swift-contrib-aed9957d22a4fa2e64df08a0e5ddfdbf309f130a.zip swift-contrib-aed9957d22a4fa2e64df08a0e5ddfdbf309f130a.tar.bz2 |
Stop over-enlarging nested span elements in chat windows.
Resolves: #891
Diffstat (limited to 'Swift/QtUI/ChatSnippet.cpp')
-rw-r--r-- | Swift/QtUI/ChatSnippet.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Swift/QtUI/ChatSnippet.cpp b/Swift/QtUI/ChatSnippet.cpp index 7524623..ab31d29 100644 --- a/Swift/QtUI/ChatSnippet.cpp +++ b/Swift/QtUI/ChatSnippet.cpp @@ -35,4 +35,8 @@ QString ChatSnippet::timeToEscapedString(const QDateTime& time) { return escape(time.toString(date)); } +QString ChatSnippet::wrapResizable(const QString& text) { + return "<span class='swift_resizable'>" + text + "</span>"; +} + }; |