Fix emoji & sticker count, fix delete/open cached world/avatar, default enable memos

This commit is contained in:
Natsumi
2025-06-12 08:54:19 +12:00
parent 766a6d2733
commit eabf514f2c
3 changed files with 19 additions and 11 deletions

View File

@@ -139,7 +139,7 @@
effect="plain"
size="mini"
style="margin-right: 5px; margin-top: 5px"
@click="openFolderGeneric(worldDialog.cachePath)">
@click="openFolder(worldDialog.cachePath)">
<span v-text="worldDialog.cacheSize" />
| {{ $t('dialog.world.tags.cache') }}
</el-tag>
@@ -191,7 +191,7 @@
icon="el-icon-delete"
circle
:disabled="isGameRunning && worldDialog.cacheLocked"
@click="deleteVRChatCache(worldDialog.ref)" />
@click="deleteWorldFromCache(worldDialog.ref)" />
</el-tooltip>
<el-tooltip
placement="top"
@@ -811,7 +811,9 @@
'showFullscreenImageDialog',
'showWorldDialog',
'showFavoriteDialog',
'openExternalLink'
'openExternalLink',
'openFolderGeneric',
'deleteVRChatCache'
],
props: {
worldDialog: Object,
@@ -983,11 +985,11 @@
this.newInstanceDialogLocationTag = '';
this.$nextTick(() => (this.newInstanceDialogLocationTag = tag));
},
openFolderGeneric(path) {
this.$emit('open-folder-generic', path);
openFolder(path) {
this.openFolderGeneric(path);
},
deleteVRChatCache(world) {
this.$emit('delete-vrchat-cache', world);
deleteWorldFromCache(world) {
this.deleteVRChatCache(world);
},
worldDialogCommand(command) {
const D = this.worldDialog;