Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nighca committed Mar 26, 2024
1 parent eb3d0a5 commit 192e573
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 16 deletions.
18 changes: 3 additions & 15 deletions spx-gui/src/components/editor/sound/SoundEdit.vue
Original file line number Diff line number Diff line change
Expand Up @@ -127,33 +127,21 @@
</div>
<div class="sound-icon-container" :class="{ disabled: isOperateDisabled.cut }">
<button :disabled="isOperateDisabled.cut" @click="handleOperate('cut')">
<img
v-if="!isOperateDisabled.cut"
class="sound-icon-with-text"
src="./icons/cut.svg"
/>
<img v-if="!isOperateDisabled.cut" class="sound-icon-with-text" src="./icons/cut.svg" />
<img v-else class="sound-icon-with-text" src="./icons/cut-unable.svg" />
</button>
<div class="sound-icon-text">{{ $t('sounds.cut') }}</div>
</div>
<div class="sound-icon-container" :class="{ disabled: isOperateDisabled.copy }">
<button :disabled="isOperateDisabled.copy" @click="handleOperate('copy')">
<img
v-if="!isOperateDisabled.copy"
class="sound-icon-with-text"
src="./icons/copy.svg"
/>
<img v-if="!isOperateDisabled.copy" class="sound-icon-with-text" src="./icons/copy.svg" />
<img v-else class="sound-icon-with-text" src="./icons/copy-unable.svg" />
</button>
<div class="sound-icon-text">{{ $t('sounds.copy') }}</div>
</div>
<div class="sound-icon-container" :class="{ disabled: isOperateDisabled.paste }">
<button :disabled="isOperateDisabled.paste" @click="handleOperate('paste')">
<img
v-if="!isOperateDisabled.paste"
class="sound-icon-with-text"
src="./icons/paste.svg"
/>
<img v-if="!isOperateDisabled.paste" class="sound-icon-with-text" src="./icons/paste.svg" />
<img v-else class="sound-icon-with-text" src="./icons/paste-unable.svg" />
</button>
<div class="sound-icon-text">{{ $t('sounds.paste') }}</div>
Expand Down
1 change: 0 additions & 1 deletion spx-gui/src/components/top-menu/TopMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -375,4 +375,3 @@ const toggleLanguage = () => {
</script>

<style lang="scss" scoped></style>
@/index

0 comments on commit 192e573

Please sign in to comment.