diff options
author | bob <bcz@cs.brown.edu> | 2020-03-04 18:20:46 -0500 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2020-03-04 18:20:46 -0500 |
commit | 26c973ecb47de86d94c39d71ad00ece38a85d623 (patch) | |
tree | ab67826925f435b2da5753fa537b317ef067c8af /src/new_fields | |
parent | 85a95c5fdb5e34461ae9892b4f1cac426b7d667b (diff) |
changed text sampling to marking every second to get audio to synchronize better
Diffstat (limited to 'src/new_fields')
-rw-r--r-- | src/new_fields/Doc.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/new_fields/Doc.ts b/src/new_fields/Doc.ts index e9fdf42b9..141a01ed2 100644 --- a/src/new_fields/Doc.ts +++ b/src/new_fields/Doc.ts @@ -859,6 +859,7 @@ export namespace Doc { const targetDoc = doc && Doc.GetProto(Cast(doc.expandedTemplate, Doc, null) || doc); targetDoc && (targetDoc.backgroundColor = ComputedField.MakeFunction(`options.data.find(doc => doc.title === (this.expandedTemplate||this)["${enumeratedFieldKey}"])?._backgroundColor || "white"`, undefined, { options })); targetDoc && (targetDoc.color = ComputedField.MakeFunction(`options.data.find(doc => doc.title === (this.expandedTemplate||this)["${enumeratedFieldKey}"]).color || "black"`, undefined, { options })); + targetDoc && (targetDoc.color = ComputedField.MakeFunction(`options.data.find(doc => doc.title === (this.expandedTemplate||this)["${enumeratedFieldKey}"]).borderRounding`, undefined, { options })); enumerations.map(enumeration => { const found = DocListCast(options.data).find(d => d.title === enumeration.title); if (found) { |