We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 67ef316 + a439ab7 commit e93059fCopy full SHA for e93059f
lib/matplotlib/backends/qt4_editor/formlayout.py
@@ -353,7 +353,7 @@ def get(self):
353
elif isinstance(value, bool):
354
value = field.checkState() == Qt.Checked
355
elif isinstance(value, float):
356
- value = float(field.text())
+ value = float(str(field.text()))
357
elif isinstance(value, int):
358
value = int(field.value())
359
elif isinstance(value, datetime.datetime):
0 commit comments