Skip to content
Snippets Groups Projects
Commit fbfaea88 authored by Alexander Diewald's avatar Alexander Diewald
Browse files

org.fortiss.tooling.base.ui:

- AnnotationViewBase: Wrap the update in a asyncExec call again to avoid deadlocks on model transformations.
org.fortiss.af3.mira.ui:
- Solve the reported issue by wrapping the problematic method call in mira.ui into a asyncExec call.
refs 2323
parent c2741dfb
No related branches found
No related tags found
No related merge requests found
......@@ -149,7 +149,7 @@ public abstract class AnnotationViewPartBase extends ViewPart implements ISelect
// Ensure that refresh is run in the UI thread
final IModelElement updatedModelElement = modelElement;
Display.getDefault().syncExec(new Runnable() {
Display.getDefault().asyncExec(new Runnable() {
@Override
public void run() {
update(updatedModelElement);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment