diff options
author | bobzel <zzzman@gmail.com> | 2021-04-11 12:34:51 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-04-11 12:34:51 -0400 |
commit | 470240a50c3af2ff29a6d61ee256374e70933eb9 (patch) | |
tree | 5886fd6619115cbe5316cfb9a1d0441d82e5e2e4 /src/client/util/CurrentUserUtils.ts | |
parent | 35e13a3aba2ec0d67f49d70b4f453c8b1592c42c (diff) |
updated startRect to use mediaState and added pendingRecording as an option.
Diffstat (limited to 'src/client/util/CurrentUserUtils.ts')
-rw-r--r-- | src/client/util/CurrentUserUtils.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/CurrentUserUtils.ts b/src/client/util/CurrentUserUtils.ts index 0875d9be7..cb8bf5a7f 100644 --- a/src/client/util/CurrentUserUtils.ts +++ b/src/client/util/CurrentUserUtils.ts @@ -423,7 +423,7 @@ export class CurrentUserUtils { ((doc.emptyScript as Doc).proto as Doc)["dragFactory-count"] = 0; } if (doc.emptyScreenshot === undefined) { - doc.emptyScreenshot = Docs.Create.ScreenshotDocument("", { _fitWidth: true, _width: 400, _height: 200, title: "screen snapshot", system: true, cloneFieldFilter: new List<string>(["system"]) }); + doc.emptyScreenshot = Docs.Create.ScreenshotDocument("empty screenshot", { _fitWidth: true, _width: 400, _height: 200, system: true, cloneFieldFilter: new List<string>(["system"]) }); } if (doc.emptyAudio === undefined) { doc.emptyAudio = Docs.Create.AudioDocument(nullAudio, { _width: 200, title: "audio recording", system: true, cloneFieldFilter: new List<string>(["system"]) }); |