Fix #8028 (Book details panel: Possible to increase width of Formats,Series section?)

This commit is contained in:
Kovid Goyal 2010-12-23 11:03:17 -07:00
parent c7bc6bc980
commit f8d96fb9d4

View File

@ -249,7 +249,7 @@ class BookInfo(QWebView):
left_pane = u'<table>%s</table>'%rows left_pane = u'<table>%s</table>'%rows
right_pane = u'<div>%s</div>'%comments right_pane = u'<div>%s</div>'%comments
self.setHtml(templ%(u'<table><tr><td valign="top" ' self.setHtml(templ%(u'<table><tr><td valign="top" '
'style="padding-right:2em">%s</td><td valign="top">%s</td></tr></table>' 'style="padding-right:2em; width:40%%">%s</td><td valign="top">%s</td></tr></table>'
% (left_pane, right_pane))) % (left_pane, right_pane)))
def mouseDoubleClickEvent(self, ev): def mouseDoubleClickEvent(self, ev):