Skip to content

Commit

Permalink
fix: increased dTap time to be more human
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanYuuki committed Dec 28, 2024
1 parent f4b0483 commit 735c0f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/pages/Anime/watch_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -932,7 +932,7 @@ class _WatchPageState extends State<WatchPage> with TickerProviderStateMixin {

void _resetControlsAfterDelay() {
_doubleTapTimeout?.cancel();
_doubleTapTimeout = Timer(const Duration(milliseconds: 300), () {
_doubleTapTimeout = Timer(const Duration(milliseconds: 1000), () {
if (accumulatedSkip != 0) {
setState(() {
player.seek(
Expand Down

0 comments on commit 735c0f6

Please sign in to comment.