Prechádzať zdrojové kódy

Fix bug in TUI key repeat handling

Reinis Mazeiks 3 rokov pred
rodič
commit
a9f286c52b
1 zmenil súbory, kde vykonal 6 pridanie a 4 odobranie
  1. 6 4
      packages/tui/src/hooks.rs

+ 6 - 4
packages/tui/src/hooks.rs

@@ -146,14 +146,16 @@ impl InnerInputState {
                     .last_key_pressed
                     .as_ref()
                     // heuristic for guessing which presses are auto-repeating. not necessarily accurate
-                    .filter(|k2| k2.0.key() == k.key() && k2.1.elapsed() < MAX_REPEAT_TIME)
+                    .filter(|(last_data, last_instant)| {
+                        last_data.key() == k.key() && last_instant.elapsed() < MAX_REPEAT_TIME
+                    })
                     .is_some();
-                if is_repeating {
-                    let new = k.clone();
-                    self.last_key_pressed = Some((new, Instant::now()));
 
+                if is_repeating {
                     *k = KeyboardData::new(k.key(), k.code(), k.location(), true, k.modifiers());
                 }
+
+                self.last_key_pressed = Some((k.clone(), Instant::now()));
             }
         }
     }