evas - fix smart clipped if a move happens to recurse within itself
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>
Thu, 27 Oct 2016 23:17:11 +0000 (08:17 +0900)
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>
Thu, 27 Oct 2016 23:21:50 +0000 (08:21 +0900)
commitb533f15880c7d51c3bdb499202dca858cf5b037a
tree5399f452ab0969167546431440b5be6b3fc66fdd
parent51eafa137d373cb3e9055c180e6862c8e5bd21d4
evas - fix smart clipped if a move happens to recurse within itself

so since this uses new pos - cur pos to move BY x pixels... there is
an issue that if the move of the obj ends up re-moving the current obj
TO the same pos. it moved BY the same delta again thus racing ahead.
not great. because x/y is not stored until the call stack returns to
after the smart move func and the pos set storce the new position in
the object struct. the easiest way atm until we have relative
positioning etc. is to store this in the smart obj and use the delta
at that time of the call then store it immediately so a recursion ends
up with a delta of 0 if its the same pos, so go back to where we were.

this fixes a nasty issue i spotted in fileselector that made filesel
icons race along when scrolling 2x as fast as everything else. oddly i
couldnt see this in any other widget that scrolled when i looked...
which is odd, but... either way a nasty issue... subtle... and now
fixed. never saw this before so this seems new.
src/lib/evas/canvas/evas_object_smart.c
src/lib/evas/canvas/evas_object_smart_clipped.c
src/lib/evas/include/evas_private.h