Skip to content

Commit

Permalink
Perform smooth progress bar value update
Browse files Browse the repository at this point in the history
  • Loading branch information
CodingWonders committed Nov 17, 2023
1 parent 110dd02 commit bbc61ba
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified Installer/Output/dt_setup.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion Panels/Get_Ops/InfoSave/ImgInfoSaveDlg.vb
Original file line number Diff line number Diff line change
Expand Up @@ -1501,7 +1501,7 @@ Public Class ImgInfoSaveDlg
Case 3
msg = "Obtention des informations des matériels cibles en cours... (cible " & drvInfoCollection.IndexOf(hwTarget) + 1 & " de " & drvInfoCollection.Count & ")"
End Select
ReportChanges(msg, (DriverPkgs.IndexOf(drvPkg) / DriverPkgs.Count) * 100)
ReportChanges(msg, (DriverPkgs.IndexOf(drvPkg) / DriverPkgs.Count) * 100 + (drvInfoCollection.IndexOf(hwTarget) + 1) / drvInfoCollection.Count * 100 / DriverPkgs.Count)
Contents &= " - Hardware description: " & hwTarget.HardwareDescription & CrLf & _
" - Hardware ID: " & hwTarget.HardwareId & CrLf & _
" - Additional IDs:" & CrLf & _
Expand Down

0 comments on commit bbc61ba

Please sign in to comment.