parent
8c1e15377f
commit
fc470152e1
|
@ -633,6 +633,9 @@ void FileBrowser::notified(LPNMHDR notification)
|
|||
}
|
||||
break;
|
||||
|
||||
case NM_RETURN:
|
||||
SetWindowLongPtr(_hSelf, DWLP_MSGRESULT, 1);
|
||||
break;
|
||||
|
||||
case TVN_KEYDOWN:
|
||||
{
|
||||
|
|
|
@ -561,6 +561,10 @@ void FunctionListPanel::notified(LPNMHDR notification)
|
|||
}
|
||||
break;
|
||||
|
||||
case NM_RETURN:
|
||||
SetWindowLongPtr(_hSelf, DWLP_MSGRESULT, 1);
|
||||
break;
|
||||
|
||||
case TVN_KEYDOWN:
|
||||
{
|
||||
LPNMTVKEYDOWN ptvkd = (LPNMTVKEYDOWN)notification;
|
||||
|
|
|
@ -628,6 +628,10 @@ void ProjectPanel::notified(LPNMHDR notification)
|
|||
openSelectFile();
|
||||
}
|
||||
break;
|
||||
|
||||
case NM_RETURN:
|
||||
SetWindowLongPtr(_hSelf, DWLP_MSGRESULT, 1);
|
||||
break;
|
||||
|
||||
case TVN_ENDLABELEDIT:
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue