mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-04-19 17:13:29 +02:00
Comments editor: Reduce button size
This commit is contained in:
parent
835994dccd
commit
565085dc95
1 changed files with 3 additions and 0 deletions
|
|
@ -493,6 +493,9 @@ def __init__(self, parent=None):
|
|||
self.toolbar1 = QToolBar(self)
|
||||
self.toolbar2 = QToolBar(self)
|
||||
self.toolbar3 = QToolBar(self)
|
||||
for i in range(1, 4):
|
||||
t = getattr(self, 'toolbar%d'%i)
|
||||
t.setIconSize(QSize(18, 18))
|
||||
self.editor = EditorWidget(self)
|
||||
self.tabs = QTabWidget(self)
|
||||
self.tabs.setTabPosition(self.tabs.South)
|
||||
|
|
|
|||
Loading…
Reference in a new issue