From 72097b8db966bb4a00c8424b59c9bd12e127c964 Mon Sep 17 00:00:00 2001 From: Walter Bender Date: Sun, 23 Jun 2024 15:23:15 -0400 Subject: [PATCH] fixes #3913 --- js/activity.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/js/activity.js b/js/activity.js index 4128d67b0d..9b2ff122db 100644 --- a/js/activity.js +++ b/js/activity.js @@ -1240,6 +1240,11 @@ class Activity { }; mediaRecorder.start(200); + setTimeout(() => { + // eslint-disable-next-line no-console + console.log("Resizing for Record", that.canvas.height); + that._onResize(); + }, 500); return mediaRecorder; }