Send events when toggling wxPropertyGrid nodes from keyboard.
Closes #15899. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@75665 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -18,6 +18,7 @@ All (GUI):
|
|||||||
- XRC handler for wxAuiToolBar added (Kinaou Hervé).
|
- XRC handler for wxAuiToolBar added (Kinaou Hervé).
|
||||||
- Add wxHtmlWindow::SetDefaultHTMLCursor() (Jeff A. Marr).
|
- Add wxHtmlWindow::SetDefaultHTMLCursor() (Jeff A. Marr).
|
||||||
- Add default ctor and Create() to wxContextHelpButton (Hanmac).
|
- Add default ctor and Create() to wxContextHelpButton (Hanmac).
|
||||||
|
- Send events when toggling wxPropertyGrid nodes from keyboard (Armel Asselin).
|
||||||
|
|
||||||
wxGTK:
|
wxGTK:
|
||||||
|
|
||||||
|
@@ -5659,12 +5659,12 @@ void wxPropertyGrid::HandleKeyEvent( wxKeyEvent &event, bool fromChild )
|
|||||||
{
|
{
|
||||||
if ( action == wxPG_ACTION_COLLAPSE_PROPERTY || secondAction == wxPG_ACTION_COLLAPSE_PROPERTY )
|
if ( action == wxPG_ACTION_COLLAPSE_PROPERTY || secondAction == wxPG_ACTION_COLLAPSE_PROPERTY )
|
||||||
{
|
{
|
||||||
if ( (m_windowStyle & wxPG_HIDE_MARGIN) || Collapse(p) )
|
if ( (m_windowStyle & wxPG_HIDE_MARGIN) || DoCollapse(p, true) )
|
||||||
wasHandled = true;
|
wasHandled = true;
|
||||||
}
|
}
|
||||||
else if ( action == wxPG_ACTION_EXPAND_PROPERTY || secondAction == wxPG_ACTION_EXPAND_PROPERTY )
|
else if ( action == wxPG_ACTION_EXPAND_PROPERTY || secondAction == wxPG_ACTION_EXPAND_PROPERTY )
|
||||||
{
|
{
|
||||||
if ( (m_windowStyle & wxPG_HIDE_MARGIN) || Expand(p) )
|
if ( (m_windowStyle & wxPG_HIDE_MARGIN) || DoExpand(p, true) )
|
||||||
wasHandled = true;
|
wasHandled = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user