From 9e01b025e59a278691155bb103d5b7455e657456 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 1 May 2013 11:06:23 +0530 Subject: [PATCH] Make VL button both bold and italic when VL is in use --- src/calibre/gui2/ui.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/calibre/gui2/ui.py b/src/calibre/gui2/ui.py index 9871719c3b..fa3f24d63e 100644 --- a/src/calibre/gui2/ui.py +++ b/src/calibre/gui2/ui.py @@ -606,6 +606,7 @@ class Main(MainWindow, MainWindowMixin, DeviceMixin, EmailMixin, # {{{ if restrictions: restrictions = ' :: ' + restrictions font.setBold(True) + font.setItalic(True) self.virtual_library.setFont(font) title = u'{0} - || {1}{2} ||'.format( __appname__, self.iactions['Choose Library'].library_name(), restrictions)