fix(studio): stop lane-header clicks from reaching the track row

The prev/next keyframe chevrons and the group toggle diamond let their
click bubble to the ancestor track row, so seeking to a keyframe also
reselected the track. The disclosure caret and the eye already stop it;
these now match.

Truncated labels (layer name, track label, group label, value readout)
also carry a title so the full text is reachable on hover.
This commit is contained in:
Miguel Angel Simon Sierra
2026-07-27 19:52:06 +02:00
parent 8bb31b3949
commit c264cf266f
3 changed files with 58 additions and 7 deletions
@@ -50,7 +50,9 @@ export function LayerDisclosureRow({
>
</span>
<span className="min-w-0 flex-1 truncate font-medium">{name}</span>
<span className="min-w-0 flex-1 truncate font-medium" title={name}>
{name}
</span>
</div>
);
}