Skip to content

Commit

Permalink
Start on #747
Browse files Browse the repository at this point in the history
  • Loading branch information
rcmaehl committed Apr 30, 2024
1 parent 65bdb38 commit 14ba33f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions WhyNotWin11.au3
Expand Up @@ -470,12 +470,12 @@ Func Main(ByRef $aResults, ByRef $aExtended, ByRef $aOutput)
GUICtrlSetCursor(-1, 0)

$hWeb = GUICtrlCreateLabel("", 34, 260, 32, 32)
GUICtrlSetTip(-1, "My Projects")
GUICtrlSetTip(-1, _Translate($aMUI[1], "My Projects"))
GUICtrlSetCursor(-1, 0)

If @LogonDomain <> @ComputerName Then
$hJob = GUICtrlCreateLabel("", 34, 310, 32, 32)
GUICtrlSetTip(-1, "I'm For Hire")
GUICtrlSetTip(-1, _Translate($aMUI[1], "I'm For Hire"))
GUICtrlSetCursor(-1, 0)
EndIf
EndIf
Expand Down Expand Up @@ -589,7 +589,7 @@ Func Main(ByRef $aResults, ByRef $aExtended, ByRef $aOutput)
GUICtrlSetBkColor(-1, $aColors[$iFooter])
GUICtrlCreateLabel(_GetMotherboardInfo(0) & " " & _GetMotherboardInfo(1) & " @ " & _GetBIOSInfo(0), 113, 580, 300, 20, $SS_CENTERIMAGE)
GUICtrlSetBkColor(-1, $aColors[$iFooter])
GUICtrlCreateLabel(_GetCPUInfo(2), 450, 560, 300, 20, $SS_CENTERIMAGE)
GUICtrlCreateLabel(StringReplace(_GetCPUInfo(2), " CPU", ""), 450, 560, 300, 20, $SS_CENTERIMAGE)
GUICtrlSetBkColor(-1, $aColors[$iFooter])
GUICtrlCreateLabel(_GetGPUInfo(0), 450, 580, 300, 20, $SS_CENTERIMAGE)
GUICtrlSetBkColor(-1, $aColors[$iFooter])
Expand Down Expand Up @@ -797,7 +797,7 @@ Func Main(ByRef $aResults, ByRef $aExtended, ByRef $aOutput)
Else
_GUICtrlSetState($hCheck[9][0], $iFail)
EndIf
GUICtrlSetData($hCheck[9][2], $aResults[9][1] & " GB " & $WINDOWS_DRIVE & @CRLF & $aResults[9][2] & " " & _Translate($aMUI[1], "Drive(s) Meet Requirements"))
GUICtrlSetData($hCheck[9][2], $WINDOWS_DRIVE & $aResults[9][1] & " GB " & @CRLF & $aResults[9][2] & " " & _Translate($aMUI[1], "Drive(s) Meet Requirements"))
#EndRegion

#Region : TPM Check
Expand Down

0 comments on commit 14ba33f

Please sign in to comment.