fix(app): timeline width jumps around when review panel is open/closed (#36202)
This commit is contained in:
parent
c769380776
commit
772e976d80
1 changed files with 1 additions and 1 deletions
|
|
@ -483,7 +483,7 @@ export default function Page() {
|
||||||
if (desktopSessionResizeOpen()) return `${sessionPanelResizedWidth()}px`
|
if (desktopSessionResizeOpen()) return `${sessionPanelResizedWidth()}px`
|
||||||
return `calc(100% - ${layout.fileTree.width()}px)`
|
return `calc(100% - ${layout.fileTree.width()}px)`
|
||||||
})
|
})
|
||||||
const centered = createMemo(() => isDesktop() && !desktopReviewOpen())
|
const centered = createMemo(() => isDesktop() && (newSessionDesign() || !desktopReviewOpen()))
|
||||||
const desktopV2PanelLayout = createMemo(() =>
|
const desktopV2PanelLayout = createMemo(() =>
|
||||||
sessionPanelLayout({
|
sessionPanelLayout({
|
||||||
review: desktopV2ReviewOpen(),
|
review: desktopV2ReviewOpen(),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue