shift-selection: reduce timeout to 15s. Closes T2254

This commit is contained in:
Boris Faure 2018-03-10 21:10:34 +01:00
parent 2d5bc93780
commit 6bf2116206
1 changed files with 1 additions and 1 deletions

View File

@ -3964,7 +3964,7 @@ _handle_mouse_down_single_click(Termio *sd,
return;
}
else if (shift &&
(time(NULL) - sd->pty->selection.last_click) <= 60)
(time(NULL) - sd->pty->selection.last_click) <= 15)
{
sd->pty->selection.is_box = ctrl;
_sel_to(sd, cx, cy - sd->scroll, EINA_FALSE);