Skip to content

Commit

Permalink
changes to reflect makelong swap
Browse files Browse the repository at this point in the history
  • Loading branch information
markm committed Feb 6, 2006
1 parent 1cb1dd6 commit a89a4a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sandbox/controlactions.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def calc_flags_and_coords(pressed, coords):
for key in pressed.split():
flags |= _mouse_flags[key.lower()]

click_point = win32functions.MakeLong(coords[1], coords[0])
click_point = win32functions.MakeLong(coords[0], coords[1])

return flags, click_point

Expand Down

0 comments on commit a89a4a7

Please sign in to comment.