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(() => {
-