From b0a60cfe64866cbe013792ba76d4c5ce4f2486ed Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Mon, 8 Jul 2019 23:25:21 +0530 Subject: [PATCH] Set mouse interval --- src/nnn.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/nnn.c b/src/nnn.c index 7e6cebda..5f068437 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -891,6 +891,7 @@ static bool initcurses(void) //intrflush(stdscr, FALSE); keypad(stdscr, TRUE); mousemask(BUTTON1_CLICKED | BUTTON1_DOUBLE_CLICKED | BUTTON2_CLICKED, NULL); + mouseinterval(400); curs_set(FALSE); /* Hide cursor */ start_color(); use_default_colors();