From: Benjamin Williams <bwilliams@kirix.com> Date: Sun, 30 Jul 2006 19:57:35 +0000 (+0000) Subject: workaround for bug #1531361 X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f88d1716592c5f7a0e193641493d93944965a760 workaround for bug #1531361 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40384 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/aui/framemanager.cpp b/src/aui/framemanager.cpp index 367bd69858..3314ec6e4c 100644 --- a/src/aui/framemanager.cpp +++ b/src/aui/framemanager.cpp @@ -2004,7 +2004,8 @@ void wxFrameManager::Update() //p.frame->Move(p.floating_pos.x, p.floating_pos.y); } - p.frame->Show(p.IsShown()); + if (p.frame->IsShown() != p.IsShown()) + p.frame->Show(p.IsShown()); } } else