Skip to content

Commit

Permalink
🎨: prevent infinite loop due to for policy application
Browse files Browse the repository at this point in the history
  • Loading branch information
merryman committed Feb 17, 2023
1 parent c31b3d7 commit 75ff7ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lively.morphic/rendering/renderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@ export default class Renderer {

for (let morph of morphsToHandle) {
if (morph._requestMasterStyling && morph.master) {
morph.master.applyIfNeeded(true);
morph._requestMasterStyling = false;
morph.master.applyIfNeeded(true);
}
}

Expand Down

0 comments on commit 75ff7ed

Please sign in to comment.