Kirix Support Forums

[ 1606167 ] Bad mouse cursor over gripper in floating pane .

Please post any wxAUI patches or modifications you've created here. Thanks!

[ 1606167 ] Bad mouse cursor over gripper in floating pane .

Postby NinjaNL on Mon Dec 03, 2007 1:01 pm

http://sourceforge.net/tracker/index.php?func=detail&aid=1606167&group_id=9863&atid=109863

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
NinjaNL
Registered User
 
Posts: 40
Joined: Thu Jun 14, 2007 6:53 am

Return to wxAUI Patches & Modifications