Mike
unread,Mar 24, 2009, 5:39:17 PM3/24/09Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Auto-android
Hi all,
I found a bug in Positron.java regarding the "touch" method which you
might want to fix. It should be changed from:
public void touch(String path) {
float [] center = centerOf(path);
touch(center[0], center[0]);
}
to:
public void touch(String path) {
float [] center = centerOf(path);
touch(center[0], center[1]);
}
Thx,
Mike Quon