diff options
author | bobzel <zzzman@gmail.com> | 2024-03-22 11:41:22 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2024-03-22 11:41:22 -0400 |
commit | 462580bf70ff563dbfe33a84b8cd015e637cdf7e (patch) | |
tree | ce47a48c911adfd435e70c2f22c06abb8ccf52f1 /src/client/documents/Documents.ts | |
parent | 2b9c89e54c19a53f0e1978850e8d05ac31186e21 (diff) |
make ink stroke labels visible always for closed gesture strokes.
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index 1d7c73306..37db23bdc 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -317,6 +317,7 @@ export class DocumentOptions { _label_minFontSize?: NUMt = new NumInfo('minimum font size for labelBoxes', false); _label_maxFontSize?: NUMt = new NumInfo('maximum font size for labelBoxes', false); stroke_width?: NUMt = new NumInfo('width of an ink stroke', false); + stroke_showLabel?: BOOLt = new BoolInfo('show label inside of stroke'); mediaState?: STRt = new StrInfo(`status of audio/video media document: ${media_state.PendingRecording}, ${media_state.Recording}, ${media_state.Paused}, ${media_state.Playing}`, false); recording?: BOOLt = new BoolInfo('whether WebCam is recording or not'); slides?: DOCt = new DocInfo('presentation slide associated with video recording (bcz: should be renamed!!)'); |