we now must skip right click events in order to allow for context events to be generated

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19512 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor 2003-03-06 16:35:10 +00:00
parent c4a49e11f7
commit 63d1f74fe9
2 changed files with 8 additions and 0 deletions

View File

@ -891,6 +891,10 @@ void wxControl::OnMouseEvent( wxMouseEvent &event )
}
}
}
else
{
event.Skip() ;
}
}
bool wxControl::MacCanFocus() const

View File

@ -891,6 +891,10 @@ void wxControl::OnMouseEvent( wxMouseEvent &event )
}
}
}
else
{
event.Skip() ;
}
}
bool wxControl::MacCanFocus() const