Connect wxEVT_KEY_DOWN for both editor controls
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56427 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -3428,10 +3428,11 @@ void wxPropertyGrid::SetupChildEventHandling( wxWindow* argWnd )
|
|||||||
argWnd->Connect(id, wxEVT_LEAVE_WINDOW,
|
argWnd->Connect(id, wxEVT_LEAVE_WINDOW,
|
||||||
wxMouseEventHandler(wxPropertyGrid::OnMouseEntry),
|
wxMouseEventHandler(wxPropertyGrid::OnMouseEntry),
|
||||||
NULL, this);
|
NULL, this);
|
||||||
argWnd->Connect(id, wxEVT_KEY_DOWN,
|
|
||||||
wxCharEventHandler(wxPropertyGrid::OnChildKeyDown),
|
|
||||||
NULL, this);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
argWnd->Connect(id, wxEVT_KEY_DOWN,
|
||||||
|
wxCharEventHandler(wxPropertyGrid::OnChildKeyDown),
|
||||||
|
NULL, this);
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxPropertyGrid::FreeEditors()
|
void wxPropertyGrid::FreeEditors()
|
||||||
|
Reference in New Issue
Block a user