mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-02-06 18:24:10 +01:00
fix a problem with pdf unwrap_factor getting set to 0.0
This commit is contained in:
parent
b238903ba8
commit
2b888a4add
1 changed files with 1 additions and 1 deletions
|
|
@ -22,5 +22,5 @@ def __init__(self, parent, get_option, get_help, db=None, book_id=None):
|
|||
|
||||
def set_value_handler(self, g, val):
|
||||
if val is None and isinstance(g, QDoubleSpinBox):
|
||||
g.setValue(0.0)
|
||||
g.setValue(0.45)
|
||||
return True
|
||||
|
|
|
|||
Loading…
Reference in a new issue