diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2020-02-01 01:03:58 -0500 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2020-02-01 01:03:58 -0500 |
commit | c96fbf77aa35b3c7f8566921064886df01f195d9 (patch) | |
tree | 110f062a88e757ed183eb3b108917ee0a5548bb9 /src/client/documents/Documents.ts | |
parent | d20a21384fc685082955cfbb9deb9c0f1176e7ad (diff) |
several layout fixes for time views. removed remnants of animate to icon code.
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index ab22906bb..5eb4dc5fb 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -249,7 +249,7 @@ export namespace Docs { ]); // All document prototypes are initialized with at least these values - const defaultOptions: DocumentOptions = { _width: 300 }; // bcz: do we really want to set anything here? could also try to set in render() methods for types that need a default + const defaultOptions: DocumentOptions = { x: 0, y: 0, _width: 300 }; // bcz: do we really want to set anything here? could also try to set in render() methods for types that need a default const suffix = "Proto"; /** |