diff --git a/Source/LibationWinForms/ProcessQueue/ProcessBookControl.Designer.cs b/Source/LibationWinForms/ProcessQueue/ProcessBookControl.Designer.cs index 38cc2b67..8a3db3dd 100644 --- a/Source/LibationWinForms/ProcessQueue/ProcessBookControl.Designer.cs +++ b/Source/LibationWinForms/ProcessQueue/ProcessBookControl.Designer.cs @@ -57,6 +57,7 @@ this.progressBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.progressBar1.Location = new System.Drawing.Point(88, 65); + this.progressBar1.MarqueeAnimationSpeed = 0; this.progressBar1.Name = "progressBar1"; this.progressBar1.Size = new System.Drawing.Size(212, 17); this.progressBar1.TabIndex = 2; diff --git a/Source/LibationWinForms/ProcessQueue/ProcessBookControl.cs b/Source/LibationWinForms/ProcessQueue/ProcessBookControl.cs index bccef916..093f0070 100644 --- a/Source/LibationWinForms/ProcessQueue/ProcessBookControl.cs +++ b/Source/LibationWinForms/ProcessQueue/ProcessBookControl.cs @@ -38,6 +38,10 @@ namespace LibationWinForms.ProcessQueue } public void SetProgrss(int progress) { + //Disabvle slow fill + //https://stackoverflow.com/a/5332770/3335599 + if (progress < progressBar1.Maximum) + progressBar1.Value = progress + 1; progressBar1.Value = progress; } public void SetRemainingTime(TimeSpan remaining)