diff options
author | bob <bcz@cs.brown.edu> | 2019-05-29 18:21:03 -0400 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2019-05-29 18:21:03 -0400 |
commit | 9dbf61fccc96f7c4d6bd63e25a7208b82df28705 (patch) | |
tree | 8396a0f950436205015ecbcddfdbef09d01793bc /src/client/views/nodes/CollectionFreeFormDocumentView.tsx | |
parent | 732cc8c3aec072525535d246b1177181bbd3f7da (diff) |
stacking view focus fixes. linkview fixes.-
Diffstat (limited to 'src/client/views/nodes/CollectionFreeFormDocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/CollectionFreeFormDocumentView.tsx | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/client/views/nodes/CollectionFreeFormDocumentView.tsx b/src/client/views/nodes/CollectionFreeFormDocumentView.tsx index 04e0a91f8..5f4d9e9ec 100644 --- a/src/client/views/nodes/CollectionFreeFormDocumentView.tsx +++ b/src/client/views/nodes/CollectionFreeFormDocumentView.tsx @@ -280,16 +280,9 @@ export class CollectionFreeFormDocumentView extends DocComponent<CollectionFreeF return ( <div className="collectionFreeFormDocumentView-container" ref={this._mainCont} - onPointerDown={this.onPointerDown} onPointerOver={this.onPointerEnter} + onPointerDown={this.onPointerDown} onClick={this.onClick} style={{ - outlineColor: "maroon", - outlineStyle: "dashed", - outlineWidth: BoolCast(this.props.Document.libraryBrush, false) || - BoolCast(this.props.Document.protoBrush, false) ? - `${1 * this.getTransform().Scale}px` - // "2px" - : "0px", opacity: zoomFade, borderRadius: `${this.borderRounding()}px`, transformOrigin: "left top", |