We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d88056b commit 88bd8c6Copy full SHA for 88bd8c6
packages/app-frontend/src/features/timeline/TimelineView.vue
@@ -1332,12 +1332,14 @@ export default defineComponent({
1332
app.view.style.opacity = '0'
1333
// @ts-expect-error PIXI type is missing queueResize
1334
app.queueResize()
1335
+ setTimeout(() => {
1336
mainRenderTexture?.resize(app.view.width / window.devicePixelRatio, app.view.height / window.devicePixelRatio)
1337
queueEventsUpdate()
1338
drawLayerBackgroundEffects()
1339
drawTimeCursor()
1340
drawTimeGrid()
1341
draw()
1342
+ }, 100)
1343
}
1344
1345
// Misc. mouse events
0 commit comments