Add some space before teh book counts in the status bar

This commit is contained in:
Kovid Goyal 2013-06-13 06:54:25 +05:30
parent 2f8a25654b
commit 1dad6584de

View File

@ -212,7 +212,7 @@ class StatusBar(QStatusBar): # {{{
if self.library_total != self.total:
base = _('{0}, {1} total').format(base, self.library_total)
self.defmsg.setText('%s [%s]' % (msg, base))
self.defmsg.setText(u'%s\xa0\xa0\xa0\xa0[%s]' % (msg, base))
self.clearMessage()
def device_disconnected(self):