Skip to content

Commit

Permalink
sync
Browse files Browse the repository at this point in the history
  • Loading branch information
AtomicSponge committed Jun 7, 2024
1 parent 89839a3 commit b941178
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 0 additions & 4 deletions renderer/ArgInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -47,7 +44,6 @@ onMounted(() => {
</div>
<div>
<button @click="sendData" class="left">Submit</button>
<button @click="cancelCmd" class="right">Cancel Command</button>
</div>
</section>
</template>
Expand Down

0 comments on commit b941178

Please sign in to comment.