billiob pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=9f5d1ad674617c94bd9c0edd1bf54d4e463d0051
commit 9f5d1ad674617c94bd9c0edd1bf54d4e463d0051 Author: Boris Faure <[email protected]> Date: Sun Jun 15 22:50:26 2014 +0200 fix selection when in scrollback when underneath scrolling occur --- src/bin/termio.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/bin/termio.c b/src/bin/termio.c index 9f2eb44..bf58da0 100644 --- a/src/bin/termio.c +++ b/src/bin/termio.c @@ -4006,6 +4006,11 @@ termio_scroll(Evas_Object *obj, int direction, int start_y, int end_y) if (!((start_y > ty->selection.end.y) || (end_y < ty->selection.start.y))) _sel_set(obj, EINA_FALSE); + else + { + ty->selection.start.y += direction; + ty->selection.end.y += direction; + } } } --
