Bug fix : 'Save results' was inactive when all test were done, but at least one WM position was disabled, ver. 2.18.1240
This commit is contained in:
parent
2382ceea73
commit
dfd8e879d1
@ -164,11 +164,11 @@ namespace Results
|
||||
{
|
||||
for (int i = 0; i < WMPositionsCount; i++)
|
||||
{
|
||||
if (WaterMeters[i] != null)
|
||||
if ((WaterMeters[i] != null) && !WaterMeters[i].Disabled)
|
||||
{
|
||||
foreach (var mtr in WaterMeters[i].MeterTestRslts)
|
||||
{
|
||||
if (!mtr.TestDone) return false;
|
||||
if (!mtr.TestDone) return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("2.18.1227.0")]
|
||||
[assembly: AssemblyFileVersion("2.18.1227.0")]
|
||||
[assembly: AssemblyVersion("2.18.1240.0")]
|
||||
[assembly: AssemblyFileVersion("2.18.1240.0")]
|
||||
|
||||
@ -29,5 +29,5 @@ using System.Runtime.InteropServices;
|
||||
// Build Number
|
||||
// Revision
|
||||
//
|
||||
[assembly: AssemblyVersion("2.18.1235.0")]
|
||||
[assembly: AssemblyFileVersion("2.18.1235.0")]
|
||||
[assembly: AssemblyVersion("2.18.1240.0")]
|
||||
[assembly: AssemblyFileVersion("2.18.1240.0")]
|
||||
|
||||
Loading…
Reference in New Issue
Block a user