objdictgen/nodemanager.py
changeset 453 c74a73474cce
parent 418 64a8c24b61a5
child 485 24b506ea314b
--- a/objdictgen/nodemanager.py	Tue Apr 29 13:50:56 2008 +0200
+++ b/objdictgen/nodemanager.py	Tue Apr 29 13:54:23 2008 +0200
@@ -675,6 +675,11 @@
                         node.SetEntry(index, subIndex, int(value))
                     except:
                         pass
+                elif editor == "float":
+                    try:
+                        node.SetEntry(index, subIndex, float(value))
+                    except:
+                        pass
                 elif editor == "domain":
                     try:
                         if len(value) % 2 != 0: