diff --git a/src/index.tsx b/src/index.tsx
index 7e4f72b7f9..1b9c76b47a 100644
--- a/src/index.tsx
+++ b/src/index.tsx
@@ -842,25 +842,19 @@ function generateDraw(element: ExcalidrawElement) {
};
} else if (element.type === "arrow") {
const [x1, y1, x2, y2, x3, y3, x4, y4] = getArrowPoints(element);
+ const options = {
+ stroke: element.strokeColor,
+ strokeWidth: element.strokeWidth,
+ roughness: element.roughness
+ };
+
const shapes = withCustomMathRandom(element.seed, () => [
// \
- generator.line(x3, y3, x2, y2, {
- stroke: element.strokeColor,
- strokeWidth: element.strokeWidth,
- roughness: element.roughness
- }),
+ generator.line(x3, y3, x2, y2, options),
// -----
- generator.line(x1, y1, x2, y2, {
- stroke: element.strokeColor,
- strokeWidth: element.strokeWidth,
- roughness: element.roughness
- }),
+ generator.line(x1, y1, x2, y2, options),
// /
- generator.line(x4, y4, x2, y2, {
- stroke: element.strokeColor,
- strokeWidth: element.strokeWidth,
- roughness: element.roughness
- })
+ generator.line(x4, y4, x2, y2, options)
]);
element.draw = (rc, context, { scrollX, scrollY }) => {
@@ -971,7 +965,17 @@ function restore(
? JSON.parse(savedElements)
: savedElements)
);
- elements.forEach((element: ExcalidrawElement) => generateDraw(element));
+ elements.forEach((element: ExcalidrawElement) => {
+ element.fillStyle = element.fillStyle || "hachure";
+ element.strokeWidth = element.strokeWidth || 1;
+ element.roughness = element.roughness || 1;
+ element.opacity =
+ element.opacity === null || element.opacity === undefined
+ ? 100
+ : element.opacity;
+
+ generateDraw(element);
+ });
}
return savedState ? JSON.parse(savedState) : null;
@@ -1106,7 +1110,7 @@ function getSelectedIndices() {
const someElementIsSelected = () =>
elements.some(element => element.isSelected);
-const someElementIsSelectedIsRectangleOrEllipseOrDiamond = () =>
+const hasBackground = () =>
elements.some(
element =>
element.isSelected &&
@@ -1115,7 +1119,7 @@ const someElementIsSelectedIsRectangleOrEllipseOrDiamond = () =>
element.type === "diamond")
);
-const someElementIsSelectedIsRectangleOrEllipseOrDiamondOrArrow = () =>
+const hasStroke = () =>
elements.some(
element =>
element.isSelected &&
@@ -1514,125 +1518,76 @@ class App extends React.Component<{}, AppState> {
- >
- )}
-
Canvas
-
-
Canvas Background Color
-
-