diff options
| author | Bob Zeleznik <zzzman@gmail.com> | 2020-03-19 15:53:07 -0400 |
|---|---|---|
| committer | Bob Zeleznik <zzzman@gmail.com> | 2020-03-19 15:53:07 -0400 |
| commit | 61e12f2e08ed0c0e47b82456b75c441b7278cdd6 (patch) | |
| tree | 5ec7146401c075fb607939b62c35cc58db7a660b /src/client/views/nodes/ScreenshotBox.tsx | |
| parent | affc5b961dac36bd2486ec45fceaaf69eb4afc63 (diff) | |
fixed buttons on screenshotbox. added 'place' option to dragDrop to drop the original document without moving it. switched to passing childDropAction as a prop
Diffstat (limited to 'src/client/views/nodes/ScreenshotBox.tsx')
| -rw-r--r-- | src/client/views/nodes/ScreenshotBox.tsx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/client/views/nodes/ScreenshotBox.tsx b/src/client/views/nodes/ScreenshotBox.tsx index cfa6fa8a3..548066f1c 100644 --- a/src/client/views/nodes/ScreenshotBox.tsx +++ b/src/client/views/nodes/ScreenshotBox.tsx @@ -145,13 +145,14 @@ export class ScreenshotBox extends DocAnnotatableComponent<FieldViewProps, Scree }) private get uIButtons() { - return ([ + return (<div className="screenshotBox-uiButtons"> <div className="screenshotBox-recorder" key="snap" onPointerDown={this.toggleRecording} > <FontAwesomeIcon icon="file" size="lg" /> </div>, <div className="screenshotBox-snapshot" key="snap" onPointerDown={this.onSnapshot} > <FontAwesomeIcon icon="camera" size="lg" /> - </div>]); + </div> + </div>); } onSnapshot = (e: React.PointerEvent) => { @@ -187,7 +188,7 @@ export class ScreenshotBox extends DocAnnotatableComponent<FieldViewProps, Scree {this.contentFunc} </CollectionFreeFormView> </div> - {this.uIButtons} + {this.active() ? this.uIButtons : (null)} </div >); } }
\ No newline at end of file |
