diff options
author | bobzel <zzzman@gmail.com> | 2020-08-31 12:03:19 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-08-31 12:03:19 -0400 |
commit | 33a6f17c7fcc0549c4e0e8cfaae7d0c0b11ced76 (patch) | |
tree | c014ba12e835d6b963bd8b1b7797d2853f1d7d3f /src/client/views/PropertiesView.tsx | |
parent | 1bddc876f4c998e070ce37fa368dc650a7695120 (diff) |
major overhaul of mainView
Diffstat (limited to 'src/client/views/PropertiesView.tsx')
-rw-r--r-- | src/client/views/PropertiesView.tsx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/client/views/PropertiesView.tsx b/src/client/views/PropertiesView.tsx index 792db3e85..2df367502 100644 --- a/src/client/views/PropertiesView.tsx +++ b/src/client/views/PropertiesView.tsx @@ -37,7 +37,6 @@ interface PropertiesViewProps { height: number; renderDepth: number; ScreenToLocalTransform: () => Transform; - onDown: (event: any) => void; } @observer @@ -867,13 +866,11 @@ export class PropertiesView extends React.Component<PropertiesViewProps> { if (this.selectedDoc && !this.isPres) { return <div className="propertiesView" style={{ width: this.props.width, + minWidth: this.props.width //overflowY: this.scrolling ? "scroll" : "visible" }} > <div className="propertiesView-title" style={{ width: this.props.width }}> Properties - {/* <div className="propertiesView-title-icon" onPointerDown={this.props.onDown}> - <FontAwesomeIcon icon="times" color="black" size="sm" /> - </div> */} </div> <div className="propertiesView-name"> {this.editableTitle} |