File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ Features:
1212Bugfixes:
1313
1414* skip empty values when restoring tables (#348 )
15+ * only append to table when first value is a float
1516* GUI send/receive config for objects in subpatches
1617
17180.15.0
Original file line number Diff line number Diff line change @@ -619,7 +619,12 @@ def graph_from_canvas(
619619 g .add_error (f"Don't know how to parse line: { ' ' .join (line )} " )
620620
621621 elif line [0 ] == "#A" and obj_array is not None :
622- obj_array .obj_dict ["values" ].extend ([float (f ) for f in line [2 :] if f != "" ])
622+ # Test that we have an array continuation and extend the array values.
623+ try :
624+ float (line [1 ])
625+ obj_array .obj_dict ["values" ].extend ([float (f ) for f in line [2 :] if f != "" ])
626+ except ValueError :
627+ continue
623628
624629 else :
625630 g .add_error (f"Don't know how to parse line: { ' ' .join (line )} " )
You can’t perform that action at this time.
0 commit comments