diff options
author | Anika Ahluwalia <anika.ahluwalia@gmail.com> | 2020-09-29 14:38:09 -0500 |
---|---|---|
committer | Anika Ahluwalia <anika.ahluwalia@gmail.com> | 2020-09-29 14:38:09 -0500 |
commit | 5c872c454b04ebfb0b18f1eb173e058781d6dd15 (patch) | |
tree | 8559da2281355c6743ed98648d19032f3c70a042 /src/client/util/CurrentUserUtils.ts | |
parent | c26d63873e3dd4304088b84fa52bffcc78ca2896 (diff) | |
parent | 1cb5ac5e07ad90589670a788e3144d9d9581a393 (diff) |
Merge branch 'master' of https://github.com/browngraphicslab/Dash-Web into anika_bug_fixes
Diffstat (limited to 'src/client/util/CurrentUserUtils.ts')
-rw-r--r-- | src/client/util/CurrentUserUtils.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/util/CurrentUserUtils.ts b/src/client/util/CurrentUserUtils.ts index 342954a4e..3e76b189a 100644 --- a/src/client/util/CurrentUserUtils.ts +++ b/src/client/util/CurrentUserUtils.ts @@ -1127,8 +1127,9 @@ export class CurrentUserUtils { CurrentUserUtils.openDashboard(userDoc, dashboardDoc); } - public static GetNewTextDoc(title: string, x: number, y: number, width?: number, height?: number) { + public static GetNewTextDoc(title: string, x: number, y: number, width?: number, height?: number, noMargins?: boolean) { const tbox = Docs.Create.TextDocument("", { + _xMargin: noMargins ? 0 : undefined, _yMargin: noMargins ? 0 : undefined, _width: width || 200, _height: height || 100, x: x, y: y, _autoHeight: true, _fontSize: StrCast(Doc.UserDoc().fontSize), _fontFamily: StrCast(Doc.UserDoc().fontFamily), title }); |