Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixes #152
  • Loading branch information
rcmaehl committed Jun 28, 2021
1 parent ef2b7c4 commit c4abbd8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions WhyNotWin11.au3
Original file line number Diff line number Diff line change
Expand Up @@ -462,12 +462,11 @@ Func Main()
If Round(DriveSpaceTotal("C:\")/1024, 0) >= 64 Then
GUICtrlSetData($hCheck[9][0], "OK")
GUICtrlSetBkColor($hCheck[9][0], 0x4CC355)
GUICtrlSetData($hCheck[9][2], Round(DriveSpaceTotal("C:\")/1024, 0) & " GB C:\" & @CRLF & $iDrives & " " & _Translate("Drive(s) Meet Requirements"))
Else
GUICtrlSetData($hCheck[9][0], "X")
GUICtrlSetBkColor($hCheck[9][0], 0xFA113D)
GUICtrlSetData($hCheck[9][2], Round(DriveSpaceTotal("C:\")/1024, 0) & " GB C:\" & @CRLF & $iDrives & " " * _Translate("Drive(s) Meet Requirements"))
EndIf
GUICtrlSetData($hCheck[9][2], Round(DriveSpaceTotal("C:\")/1024, 0) & " GB C:\" & @CRLF & $iDrives & " " & _Translate("Drive(s) Meet Requirements"))

Select
Case _GetTPMInfo(0) = False
Expand Down

0 comments on commit c4abbd8

Please sign in to comment.