diff --git a/src/actions/actionProperties.tsx b/src/actions/actionProperties.tsx index 59200c80..4b3b6338 100644 --- a/src/actions/actionProperties.tsx +++ b/src/actions/actionProperties.tsx @@ -112,13 +112,18 @@ export const actionChangeStrokeColor = register({ perform: (elements, appState, value) => { return { ...(value.currentItemStrokeColor && { - elements: changeProperty(elements, appState, (el) => { - return hasStrokeColor(el.type) - ? newElementWith(el, { - strokeColor: value.currentItemStrokeColor, - }) - : el; - }), + elements: changeProperty( + elements, + appState, + (el) => { + return hasStrokeColor(el.type) + ? newElementWith(el, { + strokeColor: value.currentItemStrokeColor, + }) + : el; + }, + true, + ), }), appState: { ...appState,