My suggestion is in changing framemanager.cpp lines 3833 onwards from
- Code: Select all
else if (part->type == wxAuiDockUIPart::typeGripper)
{
cursor = wxCursor(wxCURSOR_SIZING);
}
to
- Code: Select all
else if (part->type == wxAuiDockUIPart::typeGripper)
{
if(!part->cont_sizer->GetContainingWindow()->IsKindOf(CLASSINFO(wxAuiFloatingFrame)))
cursor = wxCursor(wxCURSOR_SIZING);
}
This seems to work
HTH
Mal