Fix not enough vertical space for text in the preferences dialog

This commit is contained in:
Kovid Goyal 2010-11-09 12:41:28 -07:00
parent 7acec85c89
commit 7eaddf9609

View File

@ -101,9 +101,9 @@ class Category(QWidget): # {{{
ac.setStatusTip(p.description)
self.actions.append(ac)
w = self.bar.widgetForAction(ac)
w.setStyleSheet('QToolButton { margin-right: 20px; min-width: 100px }')
w.setCursor(Qt.PointingHandCursor)
w.setAutoRaise(True)
w.setMinimumWidth(100)
def triggered(self, plugin, *args):
self.plugin_activated.emit(plugin)