From b94117837870c0a4a4cb5ae35d3b07de6b3cfadf Mon Sep 17 00:00:00 2001 From: Matthew Evans Date: Fri, 7 Jun 2024 14:07:27 -0400 Subject: [PATCH] sync --- CHANGELOG.md | 1 + renderer/ArgInput.vue | 4 ---- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0378ead..a5dbd1e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # Script Tray Changelog ## Development Branch + - Removed `close` button from the input window to prevent accidental closure. - Added Website URL to About popup - Added highlighting to the icon to make it more visible on light profiles - Dependencies bump diff --git a/renderer/ArgInput.vue b/renderer/ArgInput.vue index 491c460..c7a4f62 100644 --- a/renderer/ArgInput.vue +++ b/renderer/ArgInput.vue @@ -21,9 +21,6 @@ const sendData = ():void => { } else window.inputAPI.sendInput(_argInput.value) } -/** Cancel running command */ -const cancelCmd = ():void => { window.close() } - onMounted(() => { window.inputAPI.onReceiveData((inputData:InputPromptData) => { _inputLabel.value = inputData.label @@ -47,7 +44,6 @@ onMounted(() => {
-