summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2021-05-09 16:47:14 -0400
committerGitHub <noreply@github.com>2021-05-09 16:47:14 -0400
commit1d33441f7b6e9c85b47b4d220e0118bd2a68053a (patch)
treefafa229e716adce49abc085a46d433c6433e3e4f
parent574c2c1df7616ed9f80831360cd97aa2d0d9ae44 (diff)
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.
-rw-r--r--src/app.rs2
1 files changed, 1 insertions, 1 deletions
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;
}