You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import { part } from "lively.morphic";
import { GalyleoRichTextControl } from "galyleo-dashboard/studio/controls/text.cp.js";
part(GalyleoRichTextControl).openInWorld() (or opening any containing morph, all the way to Galyleo) causes the world to hang. Commenting out the text controls and font color input submorphs takes care of the problem.
Presumably what's happened is that RichTextControl, which we import from lively.ide/studio/controls/text.cp.js, duplicates this functionality and this is causing a loop.
Tentative solution is to delete the commented out code
Assigning to @merryman for comment and review
The text was updated successfully, but these errors were encountered:
The reason is an infinite loop in the text bounds measuring that is triggered by the number input morphs. I have observed this issue already in the past and believe I have a fix for it lying around somewhere, I just havent pushed it yet.
part(GalyleoRichTextControl).openInWorld()
(or opening any containing morph, all the way toGalyleo
) causes the world to hang. Commenting out thetext controls
andfont color input
submorphs takes care of the problem.Presumably what's happened is that
RichTextControl
, which we import fromlively.ide/studio/controls/text.cp.js
, duplicates this functionality and this is causing a loop.Tentative solution is to delete the commented out code
Assigning to @merryman for comment and review
The text was updated successfully, but these errors were encountered: