diff options
| author | Izhar Firdaus <izhar@inigo-tech.com> | 2011-04-15 17:00:09 +0800 |
|---|---|---|
| committer | Izhar Firdaus <izhar@inigo-tech.com> | 2011-04-15 17:00:09 +0800 |
| commit | 7b54f61bea615308a2697385941e67523ab46144 (patch) | |
| tree | ca4c91aab3ff9456366d711a1ce4aab67b3df647 | |
| parent | d156187f7e670ae3d6301b099da940712231ffbe (diff) | |
| download | hack-patches-7b54f61bea615308a2697385941e67523ab46144.tar.gz hack-patches-7b54f61bea615308a2697385941e67523ab46144.tar.xz hack-patches-7b54f61bea615308a2697385941e67523ab46144.zip | |
missing space after the username when presence status changed
| -rw-r--r-- | gnomeshell@pidgin.im/extension.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnomeshell@pidgin.im/extension.js b/gnomeshell@pidgin.im/extension.js index f2e4bb1..0ce5838 100644 --- a/gnomeshell@pidgin.im/extension.js +++ b/gnomeshell@pidgin.im/extension.js @@ -204,7 +204,7 @@ Source.prototype = { if (this._presence == old_status) return; this._presence = new_status; - this._notification.appendPresence('<i>' + this.title + 'is now ' + new_status + '</i>', false); + this._notification.appendPresence('<i>' + this.title + ' is now ' + new_status + '</i>', false); }, |
