mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-09-19 15:31:04 +02:00
fix: No more debounced refresh()
for subtypes.
This commit is contained in:
@@ -257,7 +257,7 @@ const drawElementOnCanvas = (
|
||||
context.globalAlpha = element.opacity / 100;
|
||||
const map = getSubtypeMethods(element.subtype);
|
||||
if (map?.render) {
|
||||
map.render(element, context, renderConfig.renderCb);
|
||||
map.render(element, context);
|
||||
context.globalAlpha = 1;
|
||||
return;
|
||||
}
|
||||
|
Reference in New Issue
Block a user