Skip to content

Commit

Permalink
Update TtiProcessOutputHandler.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
n00mkrad committed Jan 30, 2023
1 parent 591780c commit bc1503c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions StableDiffusionGui/Main/TtiProcessOutputHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,8 @@ public static void LogOutput(string line, bool stdErr = false)

if (percent > 0 && percent <= 100)
{
if(line.Contains("Downloading "))
Program.MainForm.SetProgress(percent);
if (line.Contains("Downloading "))
; // Program.MainForm.SetProgress(percent);
else
Program.MainForm.SetProgressImg(percent);
}
Expand Down

0 comments on commit bc1503c

Please sign in to comment.