From 0514c6a20203858438ea13e620375d466a70937e Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 9 Jul 2007 19:49:35 +0000 Subject: [PATCH] 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 --- src/gtk/collpane.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/gtk/collpane.cpp b/src/gtk/collpane.cpp index 9dab861247..e616adb537 100644 --- a/src/gtk/collpane.cpp +++ b/src/gtk/collpane.cpp @@ -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; } -- 2.45.2