Skip to content

Commit

Permalink
Fix #41
Browse files Browse the repository at this point in the history
  • Loading branch information
zamtmn committed Feb 7, 2022
1 parent 957a316 commit 6f1a03f
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions cad_source/zengine/styles/uzestyleslinetypes.pas
Original file line number Diff line number Diff line change
Expand Up @@ -346,6 +346,20 @@ constructor GDBLtypeArray.init;
plp.LengthFact:=0;
plp.Mode:=TLTContinous;
end;
if AddItem('ByLayer',pointer(plp))=IsCreated then
begin
plp.init('ByLayer');
plp.LengthDXF:=0;
plp.LengthFact:=0;
plp.Mode:=TLTByLayer;
end;
if AddItem('ByBlock',pointer(plp))=IsCreated then
begin
plp.init('ByBlock');
plp.LengthDXF:=0;
plp.LengthFact:=0;
plp.Mode:=TLTByBlock;
end;
end;
constructor GDBLtypeArray.initnul;
begin
Expand Down

0 comments on commit 6f1a03f

Please sign in to comment.