修改设置的名称显示

This commit is contained in:
unanmed 2023-08-07 18:54:43 +08:00
parent 9f3a54be0f
commit 274d4af547
2 changed files with 25 additions and 11 deletions

View File

@ -394,18 +394,20 @@ mainSetting
);
loading.once('coreInit', () => {
const get = core.getLocalStorage;
mainSetting.reset({
'screen.fullscreen': false,
'screen.halo': !!core.getLocalStorage('showHalo', true),
'screen.frag': !!core.getLocalStorage('frag', true),
'screen.itemDetail': !!core.getLocalStorage('itemDetail', true),
'screen.transition': !!core.getLocalStorage('transition', false),
'screen.antiAlias': !!core.getLocalStorage('antiAlias', false),
'screen.fontSize': core.getLocalStorage('fontSize', 16),
'screen.smoothView': !!core.getLocalStorage('smoothView', true),
'action.fixed': !!core.getLocalStorage('fixed', true),
'utils.betterLoad': !!core.getLocalStorage('betterLoad', true),
'utils.autoScale': !!core.getLocalStorage('autoScale', true)
'screen.halo': !!get('showHalo', true),
'screen.frag': !!get('frag', true),
'screen.itemDetail': !!get('itemDetail', true),
'screen.transition': !!get('transition', false),
'screen.antiAlias': !!get('antiAlias', false),
'screen.fontSize': get('fontSize', 16),
'screen.smoothView': !!get('smoothView', true),
'screen.criticalGem': !!get('criticalGem', false),
'action.fixed': !!get('fixed', true),
'utils.betterLoad': !!get('betterLoad', true),
'utils.autoScale': !!get('autoScale', true)
});
});

View File

@ -21,7 +21,9 @@
:selected="item === info.item"
@click="click(item.key, i, item)"
>
<span>{{ item.name }}</span>
<span class="setting-name">{{
item.name
}}</span>
<span
:selected="item === info.item"
class="setting-cascade"
@ -259,6 +261,8 @@ onUnmounted(() => {
flex-direction: row;
justify-content: space-between;
align-items: center;
width: 100%;
overflow: hidden;
}
.setting-cascade {
@ -273,9 +277,17 @@ onUnmounted(() => {
color: cyan;
}
.setting-name {
text-overflow: ellipsis;
white-space: nowrap;
max-width: 70%;
overflow: hidden;
}
.setting-value {
margin-right: 10px;
color: rgb(242, 255, 101);
white-space: nowrap;
}
}