WaveformSeeker Improvements

This commit is contained in:
daniel-c-harvey
2026-06-06 09:52:31 -04:00
parent ab9db6d0ec
commit b746645f97
4 changed files with 20 additions and 20 deletions
@@ -30,15 +30,15 @@
</div>
@* Playhead rule at the split point. *@
<div class="waveform-playhead"></div>
@* <div class="waveform-playhead"></div> *@
@* Hover preview line + time tooltip (suppressed while dragging). *@
@if (_showHover && !_isSeeking)
{
<div class="waveform-hover-line"
style="left: @_hoverFraction.ToString("P2", System.Globalization.CultureInfo.InvariantCulture);"></div>
style="left: @HoverPercent;"></div>
<div class="waveform-hover-time"
style="left: @_hoverFraction.ToString("P2", System.Globalization.CultureInfo.InvariantCulture);">
style="left: @HoverPercent;">
@FormatTime(_hoverTime)
</div>
}