mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-02 04:56:06 +02:00
Misc fixes
This commit is contained in:
@@ -37,18 +37,23 @@ mixin settings
|
||||
div(style='margin-top: 10px')
|
||||
span(style='margin-right: 5px') {{ $t('dialog.config_json.delete_old_cache') }}
|
||||
el-button(size='small' style='margin-left: 5px' icon='el-icon-folder-delete' @click='sweepVRChatCache()') {{ $t('dialog.config_json.sweep_cache') }}
|
||||
div(style='display: inline-block; margin-top: 10px' v-for='(item, value) in VRChatConfigList' :key='value')
|
||||
span(v-text='item.name' style='word-break: keep-all')
|
||||
| :
|
||||
el-input(
|
||||
v-model='VRChatConfigFile[value]'
|
||||
:placeholder='item.default'
|
||||
size='mini'
|
||||
:type='item.type ? item.type : "text"'
|
||||
:min='item.min'
|
||||
:max='item.max'
|
||||
style='margin-top: 5px')
|
||||
br
|
||||
div(style='display: block; margin-top: 10px' v-for='(item, value) in VRChatConfigList' :key='value')
|
||||
span(style='word-break: keep-all') {{ item.name }}:
|
||||
div(style='display: flex')
|
||||
el-button(
|
||||
v-if='item.folderBrowser'
|
||||
size='mini'
|
||||
icon='el-icon-folder-opened'
|
||||
@click='openConfigFolderBrowser(value)')
|
||||
el-input(
|
||||
v-model='VRChatConfigFile[value]'
|
||||
:placeholder='item.default'
|
||||
size='mini'
|
||||
:type='item.type ? item.type : "text"'
|
||||
:min='item.min'
|
||||
:max='item.max'
|
||||
@change='redrawVRChatConfigDialog'
|
||||
style='flex: 1; margin-top: 5px')
|
||||
div(style='display: inline-block; margin-top: 10px')
|
||||
span {{ $t('dialog.config_json.camera_resolution') }}
|
||||
br
|
||||
|
||||
Reference in New Issue
Block a user