From deaadfeb01124f600658e75618964ae06f291f46 Mon Sep 17 00:00:00 2001 From: Boris Faure Date: Mon, 12 Mar 2018 20:11:28 +0100 Subject: [PATCH] shift-selection: reduce timeout to 5s, seems enough. Ref T2254 --- src/bin/termio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/termio.c b/src/bin/termio.c index 891f8aab..36067511 100644 --- a/src/bin/termio.c +++ b/src/bin/termio.c @@ -3964,7 +3964,7 @@ _handle_mouse_down_single_click(Termio *sd, return; } else if (shift && - (time(NULL) - sd->pty->selection.last_click) <= 15) + (time(NULL) - sd->pty->selection.last_click) <= 5) { sd->pty->selection.is_box = ctrl; _sel_to(sd, cx, cy - sd->scroll, EINA_FALSE);