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:
Michael Wetherell
2006-06-15 20:33:38 +00:00
parent c668531784
commit af1a6227cc
2 changed files with 4 additions and 4 deletions

View File

@@ -2567,8 +2567,8 @@ wxMouseState wxGetMouseState()
ms.SetControlDown(mask & ControlMask);
ms.SetShiftDown(mask & ShiftMask);
ms.SetAltDown(mask & Mod1Mask);
ms.SetMetaDown(mask & Mod2Mask);
ms.SetAltDown(mask & Mod3Mask);
ms.SetMetaDown(mask & Mod1Mask);
return ms;
}