mirror of
https://github.com/reactos/reactos.git
synced 2025-05-17 16:27:00 +00:00
[NETSHELL]
- Load all LAN status icons with the same size - Only set the status icon if the icon occurred, don't set NULL icons (properties of LAN adapter window) See issue #3813 for more details. svn path=/trunk/; revision=47006
This commit is contained in:
parent
9986cfddd8
commit
d35aa96218
1 changed files with 2 additions and 2 deletions
|
@ -165,8 +165,8 @@ UpdateLanStatus(HWND hwndDlg, LANSTATUSUI_CONTEXT * pContext)
|
|||
}
|
||||
else if (pContext->dwInOctets != IfEntry.dwInOctets && pContext->dwOutOctets != IfEntry.dwOutOctets && pContext->Status != 1)
|
||||
{
|
||||
hIcon = LoadImage(netshell_hInstance, MAKEINTRESOURCE(IDI_NET_TRANSREC), IMAGE_ICON, 32, 32, LR_DEFAULTCOLOR);
|
||||
pContext->Status = 1;
|
||||
hIcon = LoadImage(netshell_hInstance, MAKEINTRESOURCE(IDI_NET_TRANSREC), IMAGE_ICON, 0, 0, LR_DEFAULTCOLOR);
|
||||
}
|
||||
else if (pContext->dwInOctets != IfEntry.dwInOctets && pContext->Status != 2)
|
||||
{
|
||||
|
@ -196,7 +196,7 @@ UpdateLanStatus(HWND hwndDlg, LANSTATUSUI_CONTEXT * pContext)
|
|||
}
|
||||
}
|
||||
|
||||
if (hwndDlg)
|
||||
if (hwndDlg && hIcon)
|
||||
{
|
||||
hOldIcon = (HICON)SendDlgItemMessageW(hwndDlg, IDC_NETSTAT, STM_SETICON, (WPARAM)hIcon, 0);
|
||||
if (hOldIcon)
|
||||
|
|
Loading…
Reference in a new issue