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
{{ message }}
This repository was archived by the owner on Apr 16, 2026. It is now read-only.
We have another bug in the inline editors in Brackets that seems to have been caused by a change in CMv4, where the editor doesn't initially display until it's resized. (You can see this in the test file for #2420 - the line widget doesn't display its content until resize.) I thought this should be fixable by calling refresh() on the inline editor to force a display update after creating it, but it doesn't seem like refresh() sets forceUpdate. If I make it do so, then I can get this to work.
Would it make sense to either have refresh() always set forceUpdate, or have something like a force parameter to refresh() that sets it? (I feel like older versions of refresh() had this parameter, but maybe I'm misremembering...)
We have another bug in the inline editors in Brackets that seems to have been caused by a change in CMv4, where the editor doesn't initially display until it's resized. (You can see this in the test file for #2420 - the line widget doesn't display its content until resize.) I thought this should be fixable by calling
refresh()on the inline editor to force a display update after creating it, but it doesn't seem likerefresh()setsforceUpdate. If I make it do so, then I can get this to work.Would it make sense to either have
refresh()always setforceUpdate, or have something like aforceparameter torefresh()that sets it? (I feel like older versions ofrefresh()had this parameter, but maybe I'm misremembering...)