Doing so was in conflict with system shortcuts; Alt+Space in particular
is used by Windows.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70318
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
switch ( event.GetKeyCode() )
{
case WXK_RETURN:
+ if ( !event.HasModifiers() )
{
// Enter activates the item, i.e. sends wxEVT_COMMAND_DATAVIEW_ITEM_ACTIVATED to
// it. Only if that event is not handled do we activate column renderer (which
}
case WXK_SPACE:
+ if ( !event.HasModifiers() )
{
// Space toggles activatable items or -- if not activatable --
// starts inline editing (this is normally done using F2 on
}
case WXK_F2:
+ if ( !event.HasModifiers() )
{
if( !m_selection.empty() )
{