diff options
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index 934b9e307..250a501e0 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -204,9 +204,9 @@ export class DocumentOptions { _maxFontSize?: number; // maximum font size for labelBoxes _columnWidth?: number; _columnsHideIfEmpty?: boolean; // whether stacking view column headings should be hidden - _fontSize?: string; - _fontFamily?: string; - _fontWeight?: string; + _text_fontSize?: string; + _text_fontFamily?: string; + _text_fontWeight?: string; _pivotField?: string; // field key used to determine headings for sections in stacking, masonry, pivot views _layout_curPage?: number; // current page of a PDF or other? paginated document _layout_currentTimecode?: number; // the current timecode of a time-based document (e.g., current time of a video) value is in seconds @@ -1002,7 +1002,6 @@ export namespace Docs { I.y = options.y as number; I._width = options._width as number; I._height = options._height as number; - I._fontFamily = 'cursive'; I.author = Doc.CurrentUserEmail; I.rotation = 0; I.defaultDoubleClick = 'click'; |