diff options
author | bobzel <zzzman@gmail.com> | 2023-09-19 15:30:58 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-09-19 15:30:58 -0400 |
commit | be8ec99f04405fea89f42b98b318ad023fb58821 (patch) | |
tree | 7e3a4fc790d6e67e0194e5d44daf2f33277d236d /src | |
parent | f4af59c20fe64cfb5f2a034546520484788033d9 (diff) |
made ink strokes not fit width by default
Diffstat (limited to 'src')
-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 254be67b9..f7ceef4f4 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -1042,7 +1042,7 @@ export namespace Docs { I[Initializing] = true; I.type = DocumentType.INK; I.layout = InkingStroke.LayoutString('stroke'); - I.layout_fitWidth = true; + I.layout_fitWidth = false; I.layout_hideDecorationTitle = true; // don't show title when selected // I.layout_hideOpenButton = true; // don't show open full screen button when selected I.color = color; |