Fixed the glitch in SequenceEditorPanel's bg
This commit is contained in:
parent
bf30b4d8b4
commit
e2ed343487
1 changed files with 2 additions and 3 deletions
|
@ -33,13 +33,12 @@ const Container = styled(PanelWrapper)`
|
||||||
`
|
`
|
||||||
|
|
||||||
const LeftBackground = styled.div`
|
const LeftBackground = styled.div`
|
||||||
background-color: #282b2fed;
|
background-color: rgba(40, 43, 47, 0.99);
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 0;
|
left: 0;
|
||||||
top: 0;
|
top: 0;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
z-index: -1;
|
z-index: -1;
|
||||||
width: 200px;
|
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
`
|
`
|
||||||
|
|
||||||
|
@ -154,7 +153,7 @@ const Content: React.FC<{}> = () => {
|
||||||
const graphEditorOpen = val(layoutP.graphEditorDims.isOpen)
|
const graphEditorOpen = val(layoutP.graphEditorDims.isOpen)
|
||||||
return (
|
return (
|
||||||
<Container ref={containerRef}>
|
<Container ref={containerRef}>
|
||||||
<LeftBackground />
|
<LeftBackground style={{width: `${val(layoutP.leftDims.width)}px`}} />
|
||||||
<FrameStampPositionProvider layoutP={layoutP}>
|
<FrameStampPositionProvider layoutP={layoutP}>
|
||||||
<Header layoutP={layoutP} />
|
<Header layoutP={layoutP} />
|
||||||
<DopeSheet key={key + '-dopeSheet'} layoutP={layoutP} />
|
<DopeSheet key={key + '-dopeSheet'} layoutP={layoutP} />
|
||||||
|
|
Loading…
Reference in a new issue