TestWizard improvements, ver. 3.8.2114
This commit is contained in:
parent
a524915f28
commit
4a884a09a1
@ -29,5 +29,5 @@ using System.Runtime.InteropServices;
|
||||
// Build Number
|
||||
// Revision
|
||||
//
|
||||
[assembly: AssemblyVersion("3.8.2109.0")]
|
||||
[assembly: AssemblyFileVersion("3.8.2109.0")]
|
||||
[assembly: AssemblyVersion("3.8.2114.0")]
|
||||
[assembly: AssemblyFileVersion("3.8.2114.0")]
|
||||
|
||||
@ -60,7 +60,8 @@ namespace TBF.UI.Procedures.TestWizard
|
||||
this.selectorValues = selectorValues;
|
||||
|
||||
flowUnit = test.FlowUnit;
|
||||
unitComboBox.Text = unit2ComboBox.Text = unit3ComboBox.Text = flowUnit.ToDescription();
|
||||
unitComboBox.Text = unit2ComboBox.Text = unit3ComboBox.Text =
|
||||
(flowUnit == Unit.None) ? Unit.m3ph.ToDescription() : flowUnit.ToDescription();
|
||||
|
||||
if (first) backButton.Visible = false;
|
||||
|
||||
|
||||
@ -54,7 +54,7 @@ namespace TBF.UI.Procedures.TestWizard
|
||||
this.test = test;
|
||||
|
||||
volumeUnit = test.VolumeUnit;
|
||||
unitComboBox.Text = volumeUnit.ToDescription();
|
||||
unitComboBox.Text = (volumeUnit == Unit.None) ? Unit.l.ToDescription() : volumeUnit.ToDescription();
|
||||
|
||||
if (first) backButton.Visible = false;
|
||||
if (last) nextButton.Text = Strings.FinishBtnText;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user