summaryrefslogtreecommitdiffstats
path: root/Swift
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2010-10-01 16:36:33 (GMT)
committerKevin Smith <git@kismith.co.uk>2010-10-01 16:36:40 (GMT)
commit31fc890d97c90a729e306c544a611f640ed00a0d (patch)
treef2e5e292c39192899309ab61593b61e853831744 /Swift
parent42559ccdec6c23774001f1a08d64a4dc5ba42532 (diff)
downloadswift-31fc890d97c90a729e306c544a611f640ed00a0d.zip
swift-31fc890d97c90a729e306c544a611f640ed00a0d.tar.bz2
Improve spacing in status messages in chat dialogs
Diffstat (limited to 'Swift')
-rw-r--r--Swift/Controllers/Chat/ChatController.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/Controllers/Chat/ChatController.cpp b/Swift/Controllers/Chat/ChatController.cpp
index 90ca7f8..07243a2 100644
--- a/Swift/Controllers/Chat/ChatController.cpp
+++ b/Swift/Controllers/Chat/ChatController.cpp
@@ -155,7 +155,7 @@ String ChatController::getStatusChangeString(boost::shared_ptr<Presence> presenc
}
}
if (!presence->getStatus().isEmpty()) {
- response += "(" + presence->getStatus() + ")";
+ response += " (" + presence->getStatus() + ")";
}
return response + ".";
}