diff options
author | Boris Faure <billiob@gmail.com> | 2015-02-16 20:50:13 +0100 |
---|---|---|
committer | Boris Faure <billiob@gmail.com> | 2015-02-16 20:50:13 +0100 |
commit | feccb7bcab33772b1f8d69bad598fbd8e61b0ec8 (patch) | |
tree | 6949e7ac2071b8e41d99f7a3a166d0785a8f2d5d /src | |
parent | 5b4e6de54a9647284898d7b3b9b751d8a38f9e70 (diff) |
fix single line selection with ctrl down
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/termio.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/bin/termio.c b/src/bin/termio.c index ac31f2b..ad192cf 100644 --- a/src/bin/termio.c +++ b/src/bin/termio.c | |||
@@ -3935,8 +3935,7 @@ _smart_cb_mouse_up(void *data, Evas *e EINA_UNUSED, Evas_Object *obj EINA_UNUSED | |||
3935 | else | 3935 | else |
3936 | { | 3936 | { |
3937 | sd->didclick = EINA_TRUE; | 3937 | sd->didclick = EINA_TRUE; |
3938 | sd->pty->selection.end.x = cx; | 3938 | _sel_to(sd, cx, cy - sd->scroll, EINA_FALSE); |
3939 | sd->pty->selection.end.y = cy - sd->scroll; | ||
3940 | } | 3939 | } |
3941 | } | 3940 | } |
3942 | _selection_dbl_fix(sd); | 3941 | _selection_dbl_fix(sd); |