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 d3763c7 commit 08b3381Copy full SHA for 08b3381
packages/app-frontend/src/features/timeline/TimelineView.vue
@@ -1227,12 +1227,14 @@ export default defineComponent({
1227
app.view.style.opacity = '0'
1228
// @ts-expect-error PIXI type is missing queueResize
1229
app.queueResize()
1230
- mainRenderTexture?.resize(app.view.width, app.view.height)
1231
- queueEventsUpdate()
1232
- drawLayerBackgroundEffects()
1233
- drawTimeCursor()
1234
- drawTimeGrid()
1235
- draw()
+ requestAnimationFrame(() => {
+ mainRenderTexture?.resize(app.view.width, app.view.height)
+ queueEventsUpdate()
+ drawLayerBackgroundEffects()
+ drawTimeCursor()
+ drawTimeGrid()
1236
+ draw()
1237
+ })
1238
}
1239
1240
// Events
0 commit comments