From 0765352abd3bd07220b8bfab7df481ac5dd4e53f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20=C5=A0ediv=C3=BD?= Date: Sun, 27 Apr 2025 09:43:50 +0200 Subject: [PATCH] fix regression for #522. #523 --- client/src/components/video.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/video.vue b/client/src/components/video.vue index 229eff57..a420c974 100644 --- a/client/src/components/video.vue +++ b/client/src/components/video.vue @@ -822,7 +822,7 @@ @Watch('locked') onFocus() { // focus opens the keyboard on mobile - if (!this.is_touch_device) { + if (this.is_touch_device) { return }