mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-05-18 21:54:02 -04:00
Fix progressbar wiggling
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user