Need to send an event in the wxCP_NO_TLW_RESIZE case too so the user

code knows when to update the layout


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@47274 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2007-07-09 19:49:50 +00:00
parent f225e6ed83
commit af6c0493cf

View File

@@ -93,6 +93,10 @@ static void gtk_collapsiblepane_expanded_callback (GObject *object,
if (p->HasFlag(wxCP_NO_TLW_RESIZE))
{
// fire an event
wxCollapsiblePaneEvent ev(p, p->GetId(), p->IsCollapsed());
p->GetEventHandler()->ProcessEvent(ev);
// the user asked to explicitely handle the resizing itself...
return;
}