diff options
Diffstat (limited to 'Swift/QtUI/SystemMessageSnippet.cpp')
-rw-r--r-- | Swift/QtUI/SystemMessageSnippet.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Swift/QtUI/SystemMessageSnippet.cpp b/Swift/QtUI/SystemMessageSnippet.cpp index 2e0aec4..c78fe36 100644 --- a/Swift/QtUI/SystemMessageSnippet.cpp +++ b/Swift/QtUI/SystemMessageSnippet.cpp @@ -16,9 +16,9 @@ SystemMessageSnippet::SystemMessageSnippet(const QString& message, const QDateTi } content_ = theme->getStatus(); - content_.replace("%message%", "<span class='swift_message'>" + escape(message) + "</span>"); - content_.replace("%shortTime%", escape(time.toString("h:mm"))); - content_.replace("%time%", "<span class='swift_time'>" + timeToEscapedString(time) + "</span>"); + content_.replace("%message%", wrapResizable("<span class='swift_message'>" + escape(message) + "</span>")); + content_.replace("%shortTime%", wrapResizable(escape(time.toString("h:mm")))); + content_.replace("%time%", wrapResizable("<span class='swift_time'>" + timeToEscapedString(time) + "</span>")); } SystemMessageSnippet::~SystemMessageSnippet() { |