From 7adc04cd23ed90b58d04ad311870ef0ad832a932 Mon Sep 17 00:00:00 2001 From: masnwilliams <43387599+masnwilliams@users.noreply.github.com> Date: Mon, 17 Aug 2026 19:54:45 +0000 Subject: [PATCH] fix(chromium-headful): refocus live view on mouse down --- images/chromium-headful/client/src/components/video.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/images/chromium-headful/client/src/components/video.vue b/images/chromium-headful/client/src/components/video.vue index 2c5955c9..4d9b5092 100644 --- a/images/chromium-headful/client/src/components/video.vue +++ b/images/chromium-headful/client/src/components/video.vue @@ -823,6 +823,10 @@ return } + if (!this.is_touch_device) { + this._overlay.focus() + } + this.sendMousePos(e) this.$client.sendData('mousedown', { key: e.button + 1 }) }