[add] namestrings for default parameters, filteroptions connected to parameters (WIP)

[change] layout of pylotparabox
This commit is contained in:
2017-07-04 14:39:10 +02:00
parent 1b3c29c47e
commit 097222a43d
4 changed files with 202 additions and 98 deletions

View File

@@ -209,7 +209,10 @@ class PylotParameter(object):
vallist = value.strip().split(' ')
val = []
for val0 in vallist:
val0 = float(val0)
try:
val0 = float(val0)
except:
pass
val.append(val0)
else:
val = str(value.strip())