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/trunk@47273 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2007-07-09 19:49:35 +00:00
parent 621ed8af21
commit 0514c6a202

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;
}