diff options
author | Michał Klichowicz <emkael@tlen.pl> | 2024-02-06 11:12:04 +0100 |
---|---|---|
committer | Michał Klichowicz <emkael@tlen.pl> | 2024-02-06 11:12:04 +0100 |
commit | c88acf0db2f15280c2b399d5b3ac5ceabc3897ed (patch) | |
tree | 0c19e6e102a6ae1d61f0633248f628ef014474a1 /Analizator9000 | |
parent | 3d49a9d132d8cad2b65f00a344ddae80f38f78a0 (diff) |
Fix proper gathering of denomination/declarer in simple analysis mode
Diffstat (limited to 'Analizator9000')
-rw-r--r-- | Analizator9000/Analizator9000/Form1.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Analizator9000/Analizator9000/Form1.cs b/Analizator9000/Analizator9000/Form1.cs index 9fcf42c..58ae368 100644 --- a/Analizator9000/Analizator9000/Form1.cs +++ b/Analizator9000/Analizator9000/Form1.cs @@ -383,7 +383,6 @@ namespace Analizator9000 // depending on the button of event origin
if (sender.GetHashCode().Equals(this.analyzeButton.GetHashCode()))
{
- this.ac = new Accumulator(deals, cons, this);
foreach (int i in Enumerable.Range(1, 5))
{
foreach (int j in Enumerable.Range(1, 4))
@@ -394,6 +393,7 @@ namespace Analizator9000 }
}
}
+ this.ac = new Accumulator(deals, cons, this);
}
else
{
|