disabled the "enabled" property output in finalxform... it kinda quite confusing
This commit is contained in:
parent
3fb6744eba
commit
3beaa0277f
@ -2034,8 +2034,10 @@ var
|
||||
Name: string;
|
||||
Value: double;
|
||||
begin
|
||||
result := Format(' <finalxform enabled="%d" color="%g" symmetry="%g" ',
|
||||
[ifthen(IsEnabled, 1, 0), color, symmetry]);
|
||||
// result := Format(' <finalxform enabled="%d" color="%g" symmetry="%g" ',
|
||||
// [ifthen(IsEnabled, 1, 0), color, symmetry]);
|
||||
result := Format(' <finalxform color="%g" ', [color]);
|
||||
if symmetry <> 0 then result := result + format('symmetry="%g"', [symmetry]);
|
||||
for i := 0 to nrvar - 1 do begin
|
||||
if vars[i] <> 0 then
|
||||
Result := Result + varnames(i) + format('="%g" ', [vars[i]]);
|
||||
|
Loading…
Reference in New Issue
Block a user