Commit 30549a77 authored by Guillaume Seguin's avatar Guillaume Seguin

Wut, I thought I had this change in already ?

parent bbec1e78
......@@ -150,8 +150,8 @@ class BuildDimensionsSetting(wxSetting):
return self.widget
def update(self):
values = [w.GetValue() for w in self.widgets]
self.value = "%.02fx%.02fx%.02f+%.02f+%.02f+%.02f+%.02f+%.02f+%.02f" % tuple(values)
values = [float(w.GetValue()) for w in self.widgets]
self.value = "%.02fx%.02fx%.02f%+.02f%+.02f%+.02f%+.02f%+.02f%+.02f" % tuple(values)
class StringSetting(wxSetting):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment