flipped order of buttons to match default X setup.

This commit is contained in:
crs 2001-05-14 21:14:49 +00:00
parent 8beea84a8d
commit 27ead1f713
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ typedef UInt8 ButtonID;
// mouse button identifiers
static const ButtonID kButtonNone = 0;
static const ButtonID kButtonLeft = 1;
static const ButtonID kButtonRight = 2;
static const ButtonID kButtonMiddle = 3;
static const ButtonID kButtonMiddle = 2;
static const ButtonID kButtonRight = 3;
#endif