- Code: Select all
Index: src/manager.cpp
===================================================================
--- src/manager.cpp (revision 774)
+++ src/manager.cpp (working copy)
@@ -2152,7 +2152,11 @@
frame->SetPaneWindow(p);
p.frame = frame;
- frame->Show();
+
+ if (p.IsShown())
+ {
+ frame->Show();
+ }
}
else
{
@@ -2164,6 +2168,8 @@
-1, -1, wxSIZE_USE_EXISTING);
//p.frame->Move(p.floating_pos.x, p.floating_pos.y);
}
+
+ p.frame->Show(p.IsShown());
}
}
else
Kirix Support Forums
Fix for wxAUI 0.9 floating pane show/hide problem
1 post
• Page 1 of 1
Fix for wxAUI 0.9 floating pane show/hide problem
wxAUI 0.9 has a problem showing and hiding floated frames (once they are floated...when docked everything works properly).
-
Ben - Kirix Support Team
- Posts: 525
- Joined: Mon Dec 19, 2005 6:29 am
1 post
· Page 1 of 1
Return to wxAUI Patches & Modifications