GdkEventKey *gdk_event,
wxNotebook *notebook )
{
- if (g_isIdle)
- wxapp_install_idle_handler();
+ // don't need to install idle handler, its done from "event" signal
if (!notebook->m_hasVMT) return FALSE;
if (g_blockEventsOnDrag) return FALSE;
// m_selection = page;
gtk_notebook_set_current_page( GTK_NOTEBOOK(widget), page );
- g_signal_stop_emission_by_name (widget, "key_press_event");
return TRUE;
}
client->SetFocus();
}
- g_signal_stop_emission_by_name (widget, "key_press_event");
return TRUE;
}
wxPoint pos = GetPosition();
rect.x -= pos.x;
rect.y -= pos.y;
- if ( rect.Inside( pt ) )
+ if ( rect.Contains( pt ) )
*flags |= wxBK_HITTEST_ONPAGE;
}
}