diff options
author | Kevin Smith <git@kismith.co.uk> | 2012-04-23 08:16:32 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2012-04-23 08:16:32 (GMT) |
commit | 9ebea1ea14e8128256ce66fa4cd2e0c8523054af (patch) | |
tree | c213926c298f9cf4778a6550bd71ce47460abbd6 /Swift | |
parent | b5a852ab35d563e1730dfc12fd652a62cada5e8e (diff) | |
download | swift-contrib-9ebea1ea14e8128256ce66fa4cd2e0c8523054af.zip swift-contrib-9ebea1ea14e8128256ce66fa4cd2e0c8523054af.tar.bz2 |
Don't lose indentation in chat rendering.
Resolves: #1092
Diffstat (limited to 'Swift')
-rw-r--r-- | Swift/QtUI/ChatSnippet.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Swift/QtUI/ChatSnippet.h b/Swift/QtUI/ChatSnippet.h index 0d864c1..523a96c 100644 --- a/Swift/QtUI/ChatSnippet.h +++ b/Swift/QtUI/ChatSnippet.h @@ -34,6 +34,7 @@ namespace Swift { result.replace("%time%", "%%time%"); result.replace("%shortTime%", "%%shortTime%"); result.replace("%userIconPath%", "%userIconPath%"); + result.replace(" ", " "); return result; } |