Fix #5391 (GUI: Status Area)

This commit is contained in:
Kovid Goyal 2010-04-26 08:57:38 -06:00
parent ea3939fea6
commit e72ce2c29f

View File

@ -91,9 +91,9 @@ class BookInfoDisplay(QWidget):
WEIGHTS = collections.defaultdict(lambda : 100) WEIGHTS = collections.defaultdict(lambda : 100)
WEIGHTS[_('Path')] = 0 WEIGHTS[_('Path')] = 0
WEIGHTS[_('Formats')] = 1 WEIGHTS[_('Formats')] = 1
WEIGHTS[_('Comments')] = 2 WEIGHTS[_('Comments')] = 4
WEIGHTS[_('Series')] = 3 WEIGHTS[_('Series')] = 2
WEIGHTS[_('Tags')] = 4 WEIGHTS[_('Tags')] = 3
def __init__(self, clear_message): def __init__(self, clear_message):
QWidget.__init__(self) QWidget.__init__(self)