stop triple on interrupted

Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-07-03 12:06:18 +08:00
parent 2a7112662f
commit f73fb0904a
2 changed files with 7 additions and 1 deletions

View File

@@ -107,6 +107,10 @@ class PlayerFocus extends StatelessWidget {
introController!.onCancelTriple(isKeyQ);
}
return true;
} else if (event is KeyDownEvent) {
if (introController?.isTripling ?? false) {
introController!.onCancelTriple();
}
}
final isArrowUp = key == LogicalKeyboardKey.arrowUp;