Use transparent background for no restriction search count instead of white

This commit is contained in:
Kovid Goyal 2010-05-01 19:41:38 -06:00
parent 82c88f16b6
commit 7ac8f6f0e7

View File

@ -893,7 +893,8 @@ class Main(MainWindow, Ui_MainWindow, DeviceGUI):
t = _("(all books)")
else:
t = _("({0} of all)").format(self.current_view().row_count())
self.search_count.setStyleSheet('QLabel { background-color: white; }')
self.search_count.setStyleSheet(
'QLabel { background-color: transparent; }')
self.search_count.setText(t)
def search_box_cleared(self):