Choosing color before entering text does not update the swatch (Fixes #1897) (#1915)

Co-authored-by: dwelle <luzar.david@gmail.com>
This commit is contained in:
Mohammed Salman 2020-07-14 14:56:45 +03:00 committed by GitHub
parent e2cc961c76
commit bac20fa641
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 32 deletions

View file

@ -32,14 +32,12 @@ export const textWysiwyg = ({
zoom,
onChange,
onSubmit,
onCancel,
getViewportCoords,
}: {
id: ExcalidrawElement["id"];
zoom: number;
onChange?: (text: string) => void;
onSubmit: (text: string) => void;
onCancel: () => void;
getViewportCoords: (x: number, y: number) => [number, number];
}) => {
function updateWysiwygStyle() {
@ -129,11 +127,7 @@ export const textWysiwyg = ({
};
const handleSubmit = () => {
if (editable.value) {
onSubmit(normalizeText(editable.value));
} else {
onCancel();
}
onSubmit(normalizeText(editable.value));
cleanup();
};