From e6188127402a0d4feef177130d213b30c2b89e3d Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Mon, 16 Feb 2015 02:54:44 +0100 Subject: [PATCH] fix, exclusions were not copied when cloning a config --- src/ce_dmdwrap.pas | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ce_dmdwrap.pas b/src/ce_dmdwrap.pas index 79b32098..5300fd12 100644 --- a/src/ce_dmdwrap.pas +++ b/src/ce_dmdwrap.pas @@ -879,6 +879,7 @@ begin fImpt.Assign(src.fImpt); fFName := patchPlateformPath(src.fFname); fObjDir := patchPlateformPath(src.fObjDir); + fExcl.Assign(src.fExcl); end else inherited; end;