Make wxMouseState's alt and meta match those in events
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39750 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -2567,8 +2567,8 @@ wxMouseState wxGetMouseState()
|
|||||||
|
|
||||||
ms.SetControlDown(mask & ControlMask);
|
ms.SetControlDown(mask & ControlMask);
|
||||||
ms.SetShiftDown(mask & ShiftMask);
|
ms.SetShiftDown(mask & ShiftMask);
|
||||||
ms.SetAltDown(mask & Mod1Mask);
|
ms.SetAltDown(mask & Mod3Mask);
|
||||||
ms.SetMetaDown(mask & Mod2Mask);
|
ms.SetMetaDown(mask & Mod1Mask);
|
||||||
|
|
||||||
return ms;
|
return ms;
|
||||||
}
|
}
|
||||||
|
@@ -1673,8 +1673,8 @@ wxMouseState wxGetMouseState()
|
|||||||
|
|
||||||
ms.SetControlDown(mask & ControlMask);
|
ms.SetControlDown(mask & ControlMask);
|
||||||
ms.SetShiftDown(mask & ShiftMask);
|
ms.SetShiftDown(mask & ShiftMask);
|
||||||
ms.SetAltDown(mask & Mod1Mask);
|
ms.SetAltDown(mask & Mod3Mask);
|
||||||
ms.SetMetaDown(mask & Mod2Mask);
|
ms.SetMetaDown(mask & Mod1Mask);
|
||||||
|
|
||||||
return ms;
|
return ms;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user