kopia lustrzana https://github.com/inkstitch/inkstitch
handle boolean parameters with no values
rodzic
723e580b14
commit
80a482af80
|
@ -275,9 +275,10 @@ class ParamsTab(ScrolledPanel):
|
|||
if len(values) > 1:
|
||||
input = wx.CheckBox(self, style=wx.CHK_3STATE)
|
||||
input.Set3StateValue(wx.CHK_UNDETERMINED)
|
||||
elif values:
|
||||
else:
|
||||
input = wx.CheckBox(self)
|
||||
input.SetValue(values[0])
|
||||
if values:
|
||||
input.SetValue(values[0])
|
||||
|
||||
input.Bind(wx.EVT_CHECKBOX, self.changed)
|
||||
elif len(param.values) > 1:
|
||||
|
|
Ładowanie…
Reference in New Issue