Show automatic view flip decider first.
This commit is contained in:
@@ -24,8 +24,8 @@
|
||||
<UpdateRequired>false</UpdateRequired>
|
||||
<MapFileExtensions>true</MapFileExtensions>
|
||||
<PublisherName>Rogers Engineering</PublisherName>
|
||||
<ApplicationRevision>0</ApplicationRevision>
|
||||
<ApplicationVersion>1.2.2.%2a</ApplicationVersion>
|
||||
<ApplicationRevision>1</ApplicationRevision>
|
||||
<ApplicationVersion>1.2.3.%2a</ApplicationVersion>
|
||||
<UseApplicationTrust>false</UseApplicationTrust>
|
||||
<PublishWizardCompleted>true</PublishWizardCompleted>
|
||||
<BootstrapperEnabled>true</BootstrapperEnabled>
|
||||
|
||||
@@ -40,8 +40,6 @@ namespace ExportDXF.Forms
|
||||
|
||||
comboBox1.DataSource = GetItems();
|
||||
comboBox1.DisplayMember = "Name";
|
||||
|
||||
//viewFlipDecider = new AskViewFlipDecider();
|
||||
}
|
||||
|
||||
protected override void OnLoad(EventArgs e)
|
||||
@@ -84,6 +82,14 @@ namespace ExportDXF.Forms
|
||||
});
|
||||
}
|
||||
|
||||
var automatic = items.FirstOrDefault(i => i.Name == "Automatic");
|
||||
|
||||
if (automatic != null)
|
||||
{
|
||||
items.Remove(automatic);
|
||||
items.Insert(0, automatic);
|
||||
}
|
||||
|
||||
return items;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user