diff options
author | mehekj <mehek.jethani@gmail.com> | 2021-08-25 21:34:40 -0400 |
---|---|---|
committer | mehekj <mehek.jethani@gmail.com> | 2021-08-25 21:34:40 -0400 |
commit | 8beb8fa42ba5f84bb13b5877560fc92ad3613e88 (patch) | |
tree | ca555ebe77f2a163b849a41416460572548b2b6d /src/client/util/CurrentUserUtils.ts | |
parent | 8f210e4dd1c8b1328fc6f4cf0094acecbae0a2ef (diff) |
basic audio trim complete
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 62fab1b23..bf768a401 100644 --- a/src/client/util/CurrentUserUtils.ts +++ b/src/client/util/CurrentUserUtils.ts @@ -443,7 +443,7 @@ export class CurrentUserUtils { (doc.emptyWall as Doc).videoWall = true; } if (doc.emptyAudio === undefined) { - doc.emptyAudio = Docs.Create.AudioDocument(nullAudio, { _width: 200, title: "audio recording", system: true, cloneFieldFilter: new List<string>(["system"]) }); + doc.emptyAudio = Docs.Create.AudioDocument(nullAudio, { _width: 200, _height: 100, title: "audio recording", system: true, cloneFieldFilter: new List<string>(["system"]) }); ((doc.emptyAudio as Doc).proto as Doc)["dragFactory-count"] = 0; } if (doc.emptyNote === undefined) { |