From cdb9bb3dbcee850244af63029f93c72d10675f34 Mon Sep 17 00:00:00 2001 From: bggRGjQaUbCoE Date: Sat, 18 Oct 2025 19:16:52 +0800 Subject: [PATCH] check cmd key Closes #1630 Signed-off-by: bggRGjQaUbCoE --- lib/pages/video/widgets/player_focus.dart | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/pages/video/widgets/player_focus.dart b/lib/pages/video/widgets/player_focus.dart index b58de1ae..83fb72ff 100644 --- a/lib/pages/video/widgets/player_focus.dart +++ b/lib/pages/video/widgets/player_focus.dart @@ -87,6 +87,9 @@ class PlayerFocus extends StatelessWidget { final isKeyQ = key == LogicalKeyboardKey.keyQ; if (isKeyQ || key == LogicalKeyboardKey.keyR) { + if (HardwareKeyboard.instance.isMetaPressed) { + return true; + } if (!plPlayerController.isLive) { if (event is KeyDownEvent) { introController!.onStartTriple();