diff --git a/src/components/App.tsx b/src/components/App.tsx index 9b4fc864d7..3369dd306b 100644 --- a/src/components/App.tsx +++ b/src/components/App.tsx @@ -1348,13 +1348,14 @@ class App extends React.Component { return false; } } + return true; // don't render text element that's being currently edited (it's // rendered on remote only) - return ( - !this.state.editingElement || - this.state.editingElement.type !== "text" || - element.id !== this.state.editingElement.id - ); + // return ( + // !this.state.editingElement || + // this.state.editingElement.type !== "text" || + // element.id !== this.state.editingElement.id + // ); }); const selectionColor = getComputedStyle( diff --git a/src/element/textWysiwyg.tsx b/src/element/textWysiwyg.tsx index ef9468e953..022b04487a 100644 --- a/src/element/textWysiwyg.tsx +++ b/src/element/textWysiwyg.tsx @@ -304,7 +304,8 @@ export const textWysiwyg = ({ ), textAlign, verticalAlign, - color: updatedTextElement.strokeColor, + // color: updatedTextElement.strokeColor, + color: "red", opacity: updatedTextElement.opacity / 100, filter: "var(--theme-filter)", maxHeight: `${editorMaxHeight}px`,