fix: ensure playback ruler appears above everything else
This commit is contained in:
@ -984,7 +984,7 @@ export function Timeline() {
|
|||||||
|
|
||||||
{/* Playhead in ruler (scrubbable) */}
|
{/* Playhead in ruler (scrubbable) */}
|
||||||
<div
|
<div
|
||||||
className="absolute top-0 bottom-0 w-0.5 bg-red-500 pointer-events-auto z-10 cursor-ew-resize"
|
className="absolute top-0 bottom-0 w-0.5 bg-red-500 pointer-events-auto z-50 cursor-ew-resize"
|
||||||
style={{ left: `${playheadPosition * 50 * zoomLevel}px` }}
|
style={{ left: `${playheadPosition * 50 * zoomLevel}px` }}
|
||||||
onMouseDown={handlePlayheadMouseDown}
|
onMouseDown={handlePlayheadMouseDown}
|
||||||
>
|
>
|
||||||
@ -1118,7 +1118,7 @@ export function Timeline() {
|
|||||||
{/* Playhead for tracks area (scrubbable) */}
|
{/* Playhead for tracks area (scrubbable) */}
|
||||||
{tracks.length > 0 && (
|
{tracks.length > 0 && (
|
||||||
<div
|
<div
|
||||||
className="absolute top-0 w-0.5 bg-red-500 pointer-events-auto z-20 cursor-ew-resize"
|
className="absolute top-0 w-0.5 bg-red-500 pointer-events-auto z-50 cursor-ew-resize"
|
||||||
style={{
|
style={{
|
||||||
left: `${playheadPosition * 50 * zoomLevel}px`,
|
left: `${playheadPosition * 50 * zoomLevel}px`,
|
||||||
height: `${tracks.length * 60}px`,
|
height: `${tracks.length * 60}px`,
|
||||||
|
Reference in New Issue
Block a user