Hi guys!
I'm trying to do a simple drag/drop kind of thing.
I overrided the mouseDragged method, and do the x += newx - oldx;
The problem is, the mouseDragged is actually called several times on the same x;y :
From :
578;235 to 579;236New location : 321;201
From :
578;235 to 579;236New location : 322;202
From :
579;236 to 583;237New location : 326;203
From :
579;236 to 583;237New location : 330;204
From : 583;237 to 590;237
New location : 337;204
From : 583;237 to 590;237
New location : 344;204
From : 590;237 to 594;238
New location : 348;205
From : 590;237 to 594;238
New location : 352;206
From : 594;238 to 598;238
New location : 356;206
I'm assuming it's a bug, but i don't want to post one topic each day on the bug section, i would like to know if this is normal?

If it is, how the hell am i supposed to implement this??