From 1d33441f7b6e9c85b47b4d220e0118bd2a68053a Mon Sep 17 00:00:00 2001 From: Clement Tsang <34804052+ClementTsang@users.noreply.github.com> Date: Sun, 9 May 2021 16:47:14 -0400 Subject: [PATCH] other: lower the timer for multi-digit in dd times (#469) Lowers the timer for multi-digit inputs in dd. I'm going to eventually completely rewrite the input part for the entire application though, but this will do for now. --- src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.rs b/src/app.rs index 365d923a..e34d6337 100644 --- a/src/app.rs +++ b/src/app.rs @@ -881,7 +881,7 @@ impl App { .delete_dialog_state .last_number_press .map_or(100, |ins| ins.elapsed().as_millis()) - > 500 + >= 400 { self.delete_dialog_state.keyboard_signal_select = 0; }