Find following code around line 288 (function Eventthread):
Code: Select all
if( !b_mouse_support && isMouseEvent( msg.message ) )
continue;
Code: Select all
if( !b_mouse_support && isMouseEvent( msg.message ) )
{
/*
* if there is a parent window, post message to it!
*/
if( p_event->parent_window != NULL )
{
/*
* Messages we don't handle directly are dispatched
* to the parent window using the window procedure
*/
PostMessage(p_event->hparent, msg.message,
msg.wParam, msg.lParam);
}
continue;
}
Code: Select all
if( !b_key_support && isKeyEvent( msg.message ) )
continue;
Code: Select all
if( !b_key_support && isKeyEvent( msg.message ) )
{
/*
* if there is a parent window, post message to it!
*/
if( p_event->parent_window != NULL )
{
/*
* Messages we don't handle directly are dispatched
* to the parent window using the window procedure
*/
PostMessage(p_event->hparent, msg.message,
msg.wParam, msg.lParam);
}
continue;
}
Best regards,
Jörg