fix #380: Chat tab opacity sliders were missing their retail row captions
Root cause: PlayerOptionPage::AddSliderOption never sets a row's own name-label text — the "Inactive Opacity"/"Active Opacity" caption comes from a SEPARATE DAT-resident runtime catalog (DID 0x78000000, resolved via the same two-level DBCache::GetDIDFromEnumStatic master-map/submap lookup ChatOptionsDatDefaults already uses for enum 0x16/category 2, here for enum 0x15/category 2) that nothing in the codebase ever queried, so both slider rows rendered with no caption at all. Fix: new ChatOptionsDatCaptions.TryRead resolves the DID-0x78000000 catalog's per-property name/tooltip entries (matched by the same owning-property enum ChatOptionsDatDefaults already keys its defaults by) and ChatOptionsPageController.BuildOpacitySliders stamps each slider's own row caption/tooltip from it — falling back to no text (never invented English) if resolution fails. Regressed by ChatOptionsPageControllerTests. Bind_WiresEachSlidersOwnRowCaption_FromTheResolvedDatCatalog and the companion Bind_MissingCaption_RendersNoText_NeverInventsEnglish case, plus a live-mount probe (OptionsPanelLiveMountProbeTests. ProbeChatOpacityCaptions) confirming the production TryRead call resolves "Inactive Opacity"/"Active Opacity" against the real DAT. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
parent
c0b3d8f233
commit
2a248c0d48
8 changed files with 415 additions and 10 deletions
|
|
@ -427,6 +427,12 @@ chat windows already read when deciding which lines to show.
|
|||
|
||||
### Opacity sliders — live drag, linked, never clamping
|
||||
|
||||
**Gate-4 re-test note (#380):** both sliders previously showed ONLY the
|
||||
Transparent/Opaque endpoint labels on the second (Active) slider, with NO
|
||||
row caption identifying which slider was which. Each slider row now shows
|
||||
its own DAT-resolved caption — "Inactive Opacity" next to the first slider,
|
||||
"Active Opacity" next to the second — report if either caption is missing
|
||||
or shows the wrong text.
|
||||
|
||||
**Gate-4 re-test note (#379) — step 4 below is REWRITTEN:** the sliders
|
||||
previously faded EVERY registered window (vitals, toolbar, inventory,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue