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
I think this is the same problem as #2752, and if so, the solution in #2753 also applies. ui.ctx().input_mut acquires an exclusive lock to the context for the duration of the closure, and editor_out.state.store(ui.ctx(), ... also tries to acquire the same exclusive lock to modify the context, so it causes a deadlock. You have to move this part of the code outside the closure.
The text was updated successfully, but these errors were encountered: