You've already forked lazarus-ccr
Lines in new DXF versions can be drawn now
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1460 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -353,6 +353,11 @@ begin
|
||||
begin
|
||||
// Now read and process the item name
|
||||
CurToken := TDXFToken(ATokens.Items[i]);
|
||||
|
||||
// Avoid an exception by previously checking if the conversion can be made
|
||||
if (CurToken.StrValue = 'AcDbEntity') or
|
||||
(CurToken.StrValue = 'AcDbLine') then Continue;
|
||||
|
||||
CurToken.FloatValue := StrToFloat(Trim(CurToken.StrValue));
|
||||
|
||||
case CurToken.GroupCode of
|
||||
|
Reference in New Issue
Block a user