From 4be2cf4f144ffe5694a4abbb35f14dc5bac0bace Mon Sep 17 00:00:00 2001 From: viarotel Date: Wed, 23 Oct 2024 17:50:20 +0800 Subject: [PATCH] =?UTF-8?q?perf:=20=E2=99=BB=EF=B8=8F=20Optimize=20camera?= =?UTF-8?q?=20recording?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Device/components/MoreDropdown/components/Record/index.vue | 2 +- .../components/MoreDropdown/components/RecordCamera/index.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Device/components/MoreDropdown/components/Record/index.vue b/src/components/Device/components/MoreDropdown/components/Record/index.vue index a87cfa77..8df60454 100644 --- a/src/components/Device/components/MoreDropdown/components/Record/index.vue +++ b/src/components/Device/components/MoreDropdown/components/Record/index.vue @@ -34,7 +34,7 @@ export default { const args = this.$store.preference.scrcpyParameter(row.id, { isRecord: true, - excludes: ['--otg', '--mouse=aoa', '--keyboard=aoa'], + excludes: ['--otg', '--mouse=aoa', '--keyboard=aoa', '--show-touches'], }) try { diff --git a/src/components/Device/components/MoreDropdown/components/RecordCamera/index.vue b/src/components/Device/components/MoreDropdown/components/RecordCamera/index.vue index 7efdf1d6..1c7770c3 100644 --- a/src/components/Device/components/MoreDropdown/components/RecordCamera/index.vue +++ b/src/components/Device/components/MoreDropdown/components/RecordCamera/index.vue @@ -34,7 +34,7 @@ export default { let args = this.$store.preference.scrcpyParameter(row.id, { isRecord: true, - excludes: ['--otg', '--mouse=aoa', '--keyboard=aoa', '--video-source'], + excludes: ['--otg', '--mouse=aoa', '--keyboard=aoa', '--video-source', '--show-touches'], }) args += ' --video-source=camera'