mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 14:42:11 +02:00
[218847] Remove CONTENT flag for DataModelInitializedEvent as it is not needd.
This commit is contained in:
parent
626f9f736a
commit
2ecde82295
1 changed files with 2 additions and 2 deletions
|
@ -90,7 +90,7 @@ public class LaunchRootVMNode extends RootVMNode
|
|||
flags = IModelDelta.STATE | IModelDelta.CONTENT;
|
||||
}
|
||||
} else if (e instanceof DataModelInitializedEvent) {
|
||||
flags = IModelDelta.EXPAND | IModelDelta.CONTENT;
|
||||
flags = IModelDelta.EXPAND;
|
||||
}
|
||||
|
||||
return flags;
|
||||
|
@ -128,7 +128,7 @@ public class LaunchRootVMNode extends RootVMNode
|
|||
}
|
||||
}
|
||||
} else if (event instanceof DataModelInitializedEvent) {
|
||||
rootDelta.setFlags(rootDelta.getFlags() | IModelDelta.EXPAND | IModelDelta.CONTENT);
|
||||
rootDelta.setFlags(rootDelta.getFlags() | IModelDelta.EXPAND);
|
||||
}
|
||||
rm.setData(rootDelta);
|
||||
rm.done();
|
||||
|
|
Loading…
Add table
Reference in a new issue