aboutsummaryrefslogtreecommitdiff
path: root/src/client/documents/Documents.ts
diff options
context:
space:
mode:
authorBob Zeleznik <zzzman@gmail.com>2019-07-04 14:08:00 -0400
committerBob Zeleznik <zzzman@gmail.com>2019-07-04 14:08:00 -0400
commitd479f5e6bcdb7d1a0edb2f8cf366549abe2a910b (patch)
tree31ed3902c5571aec2de1d5743f990ef0723d5234 /src/client/documents/Documents.ts
parente56a29faab91c5059af41e0b2abd79e46eacce0c (diff)
added text font color setting. adding interactive border radius. moved main toolbar.
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r--src/client/documents/Documents.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts
index 7a976e7d7..2bddf053a 100644
--- a/src/client/documents/Documents.ts
+++ b/src/client/documents/Documents.ts
@@ -77,7 +77,7 @@ export interface DocumentOptions {
backgroundLayout?: string;
curPage?: number;
documentText?: string;
- borderRounding?: number;
+ borderRounding?: string;
schemaColumns?: List<string>;
dockingConfig?: string;
dbDoc?: Doc;
@@ -93,7 +93,7 @@ export namespace DocUtils {
if (target === CurrentUserUtils.UserDocument) return;
UndoManager.RunInBatch(() => {
- let linkDoc = Docs.TextDocument({ width: 100, height: 30, borderRounding: -1 });
+ let linkDoc = Docs.TextDocument({ width: 100, height: 30, borderRounding: "100%" });
linkDoc.type = DocTypes.LINK;
let linkDocProto = Doc.GetProto(linkDoc);