fix a problem with pdf unwrap_factor getting set to 0.0

This commit is contained in:
ldolse 2010-11-19 10:03:56 +08:00
parent b238903ba8
commit 2b888a4add

View File

@ -22,5 +22,5 @@ class PluginWidget(Widget, Ui_Form):
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