shift-selection: reduce timeout to 5s, seems enough. Ref T2254

This commit is contained in:
Boris Faure 2018-03-12 20:11:28 +01:00
parent bf110393b6
commit deaadfeb01
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) <= 15)
(time(NULL) - sd->pty->selection.last_click) <= 5)
{
sd->pty->selection.is_box = ctrl;
_sel_to(sd, cx, cy - sd->scroll, EINA_FALSE);