Skip to content

Commit 6953f10

Browse files
committed
Fix for enabling cancel button.
1 parent 67d3a69 commit 6953f10

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

Applications/Ice/Views/ProgressForm.Designer.cs

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Applications/Ice/Views/ProgressForm.cs

+5-4
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,15 @@ public int Value
7878
{
7979
if (MainProgressBar.Value == value) return;
8080

81+
MainProgressBar.Style = value > 0 ?
82+
ProgressBarStyle.Continuous :
83+
ProgressBarStyle.Marquee;
84+
8185
var min = MainProgressBar.Minimum;
8286
var max = MainProgressBar.Maximum;
8387
MainProgressBar.Value = Math.Min(Math.Max(value, min), max);
8488

89+
ExitButton.Enabled =
8590
SuspendButton.Enabled = value > 0;
8691

8792
UpdateTitle();
@@ -110,10 +115,6 @@ public int Unit
110115
{
111116
if (MainProgressBar.Maximum == value) return;
112117
MainProgressBar.Maximum = value;
113-
MainProgressBar.Style = value > 0 ?
114-
ProgressBarStyle.Continuous :
115-
ProgressBarStyle.Marquee;
116-
ExitButton.Enabled = value > 0;
117118
}
118119
}
119120

0 commit comments

Comments
 (0)