From ab620250daab9cf958b2c217cb4d81dd2dab6425 Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Tue, 21 Aug 2007 08:35:14 +0000 Subject: [PATCH] Fixed [ 1645203 ] Problem with resizing floating panes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48256 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/aui/framemanager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aui/framemanager.cpp b/src/aui/framemanager.cpp index 93379c8087..6fc592552e 100644 --- a/src/aui/framemanager.cpp +++ b/src/aui/framemanager.cpp @@ -2374,7 +2374,7 @@ void wxAuiManager::Update() { // frame already exists, make sure it's position // and size reflect the information in wxAuiPaneInfo - if (p.frame->GetPosition() != p.floating_pos) + if ((p.frame->GetPosition() != p.floating_pos) || (p.frame->GetSize() != p.floating_size)) { p.frame->SetSize(p.floating_pos.x, p.floating_pos.y, p.floating_size.x, p.floating_size.y,