diff --git a/components/Carbon.js b/components/Carbon.js index 9f35f75..c826215 100644 --- a/components/Carbon.js +++ b/components/Carbon.js @@ -101,16 +101,16 @@ class Carbon extends React.PureComponent { onMouseUp = () => { if (this.currentSelection) { - const { editor } = this.props.editorRef.current - const startPos = editor.charCoords(this.currentSelection.from, 'window') - const endPos = editor.charCoords(this.currentSelection.to, 'window') + // const { editor } = this.props.editorRef.current + // const startPos = editor.charCoords(this.currentSelection.from, 'window') + // const endPos = editor.charCoords(this.currentSelection.to, 'window') - const container = this.props.innerRef.current.getBoundingClientRect() + // const container = this.props.innerRef.current.getBoundingClientRect() - const top = Math.max(startPos.bottom, endPos.bottom) - container.top - 3 - const left = (startPos.left + endPos.left) / 2 - container.left - 68 - - this.setState({ selectionAt: { ...this.currentSelection, top, left } }, () => { + // const top = Math.max(startPos.bottom, endPos.bottom) - container.top - 3 + // const left = (startPos.left + endPos.left) / 2 - container.left - 68 + // { ...this.currentSelection, top, left } + this.setState({ selectionAt: this.currentSelection }, () => { this.currentSelection = null }) } else {