Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Start on rcmaehl#271
  • Loading branch information
rcmaehl committed Jun 30, 2021
1 parent 7683900 commit 976f4da
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions WhyNotWin11.au3
Original file line number Diff line number Diff line change
Expand Up @@ -334,22 +334,22 @@ Func Main()
_GDIPlus_Startup()
Local $aIcons[4]
If @Compiled Then
$aIcons[0] = GUICtrlCreateIcon(@ScriptFullPath, 201, 12, 100, 32, 32)
$aIcons[0] = GUICtrlCreateIcon(@ScriptFullPath, 201, 12, 110, 32, 32)
_SetBkIcon($aIcons[0], 0xE6E6E6, @ScriptFullPath, 201, 32, 32)
$aIcons[1] = GUICtrlCreateIcon(@ScriptFullPath, 202, 56, 100, 32, 32)
$aIcons[1] = GUICtrlCreateIcon(@ScriptFullPath, 202, 56, 110, 32, 32)
_SetBkIcon($aIcons[1], 0xE6E6E6, @ScriptFullPath, 202, 32, 32)
$aIcons[2] = GUICtrlCreateIcon(@ScriptFullPath, 203, 12, 144, 32, 32)
$aIcons[2] = GUICtrlCreateIcon(@ScriptFullPath, 203, 12, 154, 32, 32)
_SetBkIcon($aIcons[2], 0xE6E6E6, @ScriptFullPath, 203, 32, 32)
$aIcons[3] = GUICtrlCreateIcon(@ScriptFullPath, 204, 56, 144, 32, 32)
$aIcons[3] = GUICtrlCreateIcon(@ScriptFullPath, 204, 56, 154, 32, 32)
_SetBkIcon($aIcons[3], 0xE6E6E6, @ScriptFullPath, 204, 32, 32)
Else
GUICtrlCreateIcon("", -1, 12, 100, 32, 32)
GUICtrlCreateIcon("", -1, 12, 110, 32, 32)
_SetBkIcon(-1, 0xE6E6E6, ".\assets\Git.ico", -1, 32, 32)
GUICtrlCreateIcon("", -1, 56, 100, 32, 32)
GUICtrlCreateIcon("", -1, 56, 110, 32, 32)
_SetBkIcon(-1, 0xE6E6E6, ".\assets\PP.ico", -1, 32, 32)
GUICtrlCreateIcon("", -1, 12, 144, 32, 32)
GUICtrlCreateIcon("", -1, 12, 154, 32, 32)
_SetBkIcon(-1, 0xE6E6E6, ".\assets\dis.ico", -1, 32, 32)
GUICtrlCreateIcon("", -1, 56, 144, 32, 32)
GUICtrlCreateIcon("", -1, 56, 154, 32, 32)
_SetBkIcon(-1, 0xE6E6E6, ".\assets\Web.ico", -1, 32, 32)
EndIf
_GDIPlus_Shutdown()
Expand Down

0 comments on commit 976f4da

Please sign in to comment.