diff options
author | bobzel <zzzman@gmail.com> | 2020-08-02 18:44:01 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-08-02 18:44:01 -0400 |
commit | 38da84cb51aa7c4755432029af0c056cfc35b908 (patch) | |
tree | 53ddc2762b7e77c3c2f9e63b299ecc199e1d57d5 /src/client/util/CurrentUserUtils.ts | |
parent | 451bfcbe9434afafe370d55c94b144ee157c3cdc (diff) |
updated fontColor and marker highlight in richTextMenu
Diffstat (limited to 'src/client/util/CurrentUserUtils.ts')
-rw-r--r-- | src/client/util/CurrentUserUtils.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/util/CurrentUserUtils.ts b/src/client/util/CurrentUserUtils.ts index 6d752832a..607a9c439 100644 --- a/src/client/util/CurrentUserUtils.ts +++ b/src/client/util/CurrentUserUtils.ts @@ -848,6 +848,8 @@ export class CurrentUserUtils { doc.activeDash = StrCast(doc.activeDash, "0"); doc.fontSize = StrCast(doc.fontSize, "12pt"); doc.fontFamily = StrCast(doc.fontFamily, "Arial"); + doc.fontColor = StrCast(doc.fontColor, "black"); + doc.fontHighlight = StrCast(doc.fontHighlight, ""); doc["constants-snapThreshold"] = NumCast(doc["constants-snapThreshold"], 10); // doc["constants-dragThreshold"] = NumCast(doc["constants-dragThreshold"], 4); // Utils.DRAG_THRESHOLD = NumCast(doc["constants-dragThreshold"]); |