5.1
Combine and relabel table view switch. Remove and re-arrange some table columns Group Pets together
This commit is contained in:
@@ -224,7 +224,7 @@ export function ConfigPanel({
|
||||
{ key: 'fur', show: showFur, node: html`
|
||||
<span class="config-item-label">Fur Colour</span>
|
||||
<${CustomSelect}
|
||||
value=${furColor} isOn=${true} noHide=${true} grpClass="grp-surface"
|
||||
value=${furColor} isOn=${true} noHide=${true} grpClass="grp-pets"
|
||||
hideLabel="Fur Colour"
|
||||
options=${Object.entries(FUR_COLORS).map(([k, v]) => ({ value: k, label: v.name }))}
|
||||
onChange=${(v) => setFurColor(v)}
|
||||
|
||||
@@ -155,7 +155,7 @@ export function DayTabs({
|
||||
// those controls rather than a separate, unrelated style.
|
||||
const rowGrpClass = mainConfigKey === 'vehicle' ? 'grp-wind'
|
||||
: mainConfigKey === 'indoor' ? 'grp-ambient'
|
||||
: mainConfigKey === 'fur' ? 'grp-surface'
|
||||
: mainConfigKey === 'fur' ? 'grp-pets'
|
||||
: 'grp-felt';
|
||||
|
||||
// Within that group, shade further by the exact option chosen — same idea
|
||||
|
||||
Reference in New Issue
Block a user