I've found at least a reason for this:
Quote:
if (checkBoxNoMerge.Checked)
dbChannel=new Channel(channel.Name, false, false, 0, new DateTime(2000, 1, 1), false, new DateTime(2000, 1, 1), -1, true, "", true,channel.Name);
else
dbChannel=layer.AddChannel("",channel.Name);
|
Analog scan obviously has a setting if channels should NOT be merged.
Import however _only_ uses
Quote:
|
layer.AddChannel("",channel.Name);
|
Unfortunately this is not a "true" setting but instead a "dumb" gui selection. Therefore the import cannot know whether it is allowed to merge or not...