mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-19 06:43:51 +02:00
feat: add launch command for switching avatars (#1145)
* feat: add launch command for switching avatars * fix: reuse selectAvatarWithoutConfirmation * chore: remove FIXME comments * fix: address comments - ipcEvent does not need to be async - use $app instead of $app.methods * fix: consolidate settings option Instead of having two settings to control focus and confirmation seperately, just use one and grab focus when its enabled.
This commit is contained in:
@@ -2,21 +2,12 @@
|
||||
<div class="simple-switch">
|
||||
<div class="name" :style="{ width: longLabel ? '300px' : undefined }">
|
||||
{{ label }}
|
||||
<el-tooltip
|
||||
v-if="tooltip"
|
||||
placement="top"
|
||||
class="tooltip"
|
||||
:content="tooltip"
|
||||
<el-tooltip v-if="tooltip" placement="top" class="tooltip" :content="tooltip"
|
||||
><i class="el-icon-info"
|
||||
/></el-tooltip>
|
||||
</div>
|
||||
|
||||
<el-switch
|
||||
class="switch"
|
||||
:value="value"
|
||||
@change="change"
|
||||
:disabled="disabled"
|
||||
></el-switch>
|
||||
<el-switch class="switch" :value="value" @change="change" :disabled="disabled"></el-switch>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user