diff options
| author | bobzel <zzzman@gmail.com> | 2023-08-17 10:00:10 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2023-08-17 10:00:10 -0400 |
| commit | 0eb9d37a9dd1a6539f331f953d5f20c761d5f940 (patch) | |
| tree | 66a1796a3311a48c58e3458cb514777f4d788f5c /src/client/views/MarqueeAnnotator.tsx | |
| parent | d1e31265f8707bea63e21bf9a7b1dd10ccbf2009 (diff) | |
fixed brushing of pinned viewports for chrome to not flash. converted pres<Property> to config_<property> and treeView<Property> to treeView_Property. fixed text toolbar to show/set text properties based on insertion point.
Diffstat (limited to 'src/client/views/MarqueeAnnotator.tsx')
| -rw-r--r-- | src/client/views/MarqueeAnnotator.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/MarqueeAnnotator.tsx b/src/client/views/MarqueeAnnotator.tsx index a4a2c1df9..4aabb83dc 100644 --- a/src/client/views/MarqueeAnnotator.tsx +++ b/src/client/views/MarqueeAnnotator.tsx @@ -201,7 +201,7 @@ export class MarqueeAnnotator extends React.Component<MarqueeAnnotatorProps> { textRegionAnnoProto.height = Math.max(maxY, 0) - Math.max(minY, 0); textRegionAnnoProto.width = Math.max(maxX, 0) - Math.max(minX, 0); // mainAnnoDocProto.text = this._selectionText; - textRegionAnnoProto.textInlineAnnotations = new List<Doc>(annoDocs); + textRegionAnnoProto.text_inlineAnnotations = new List<Doc>(annoDocs); savedAnnoMap.clear(); return textRegionAnno; }; |
