From: Julian Smart Date: Mon, 17 Sep 2007 09:28:28 +0000 (+0000) Subject: Removed restriction that multiple centre panes can't be resized X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f5dc1b7e497d63f22486edeb672d7221b6c83cc1 Removed restriction that multiple centre panes can't be resized git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48743 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/aui/framemanager.cpp b/src/aui/framemanager.cpp index 664c02947d..ef5bf328f9 100644 --- a/src/aui/framemanager.cpp +++ b/src/aui/framemanager.cpp @@ -3792,8 +3792,9 @@ void wxAuiManager::OnLeftDown(wxMouseEvent& event) if (part->type == wxAuiDockUIPart::typeDockSizer || part->type == wxAuiDockUIPart::typePaneSizer) { - if (part->dock && part->dock->dock_direction == wxAUI_DOCK_CENTER) - return; + // Removing this restriction so that a centre pane can be resized + //if (part->dock && part->dock->dock_direction == wxAUI_DOCK_CENTER) + // return; // a dock may not be resized if it has a single // pane which is not resizable