mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
[NETSHELL] Double click on component should open properties (#6008)
Based on KRosUser's lanprop.patch. Add NM_DBLCLK handling. CORE-19330
This commit is contained in:
parent
edaeef9418
commit
cbc60aa07a
1 changed files with 7 additions and 0 deletions
|
@ -341,6 +341,13 @@ CNetConnectionPropertyUi::LANPropertiesUIDlg(
|
|||
return PSNRET_NOERROR;
|
||||
}
|
||||
#endif
|
||||
if (lppl->hdr.code == NM_DBLCLK)
|
||||
{
|
||||
This = (CNetConnectionPropertyUi*)GetWindowLongPtr(hwndDlg, DWLP_USER);
|
||||
This->ShowNetworkComponentProperties(hwndDlg);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
if (lppl->hdr.code == LVN_ITEMCHANGING)
|
||||
{
|
||||
ZeroMemory(&li, sizeof(li));
|
||||
|
|
Loading…
Reference in a new issue