Quote:
Originally Posted by capink
This is not happening for me. I need the exported chain zip to trigger the error.
|
And now it isn't happening for me. I did reinstall the plugin, which might have fixed something.
Quote:
It does not remember the size for me (calibre 5.14) e.g. formulas dialog. If I remove it scrollbars kick in for both directions. I have to resize manually everytime I use the dialog. I just tested again by commenting out the resizing, same result.
|
The reason that the template dialog isn't saving its geometry is that you aren't calling its accept function. Line 436 in "templates.py" should be
Code:
TemplateDialog.accept(self)
instead of
Code:
QDialog.accept(self)
Line 439 in reject() needs a similar change.