tradt / sikuli-api

Automatically exported from code.google.com/p/sikuli-api
0 stars 0 forks source link

bug with drop action #86

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1.try to specify the drop action on the ppt in sikuli slide
2.
3.

What is the expected output? What do you see instead?

a mouse drop action will work.

it shows a mouse DRAG action.

What version of the product are you using? On what operating system?

1.4.0

Please provide any additional information below.

in file: 
./src/main/java/org/sikuli/slides/api/actions/DropAction.java

line 21, it is:
mouse.drag(loc);

but it should be:
mouse.drop(loc);

thanks.

Original issue reported on code.google.com by wa...@motherapp.com on 31 May 2014 at 8:31