mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 10:16:03 +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;
|
flags = IModelDelta.STATE | IModelDelta.CONTENT;
|
||||||
}
|
}
|
||||||
} else if (e instanceof DataModelInitializedEvent) {
|
} else if (e instanceof DataModelInitializedEvent) {
|
||||||
flags = IModelDelta.EXPAND | IModelDelta.CONTENT;
|
flags = IModelDelta.EXPAND;
|
||||||
}
|
}
|
||||||
|
|
||||||
return flags;
|
return flags;
|
||||||
|
@ -128,7 +128,7 @@ public class LaunchRootVMNode extends RootVMNode
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if (event instanceof DataModelInitializedEvent) {
|
} else if (event instanceof DataModelInitializedEvent) {
|
||||||
rootDelta.setFlags(rootDelta.getFlags() | IModelDelta.EXPAND | IModelDelta.CONTENT);
|
rootDelta.setFlags(rootDelta.getFlags() | IModelDelta.EXPAND);
|
||||||
}
|
}
|
||||||
rm.setData(rootDelta);
|
rm.setData(rootDelta);
|
||||||
rm.done();
|
rm.done();
|
||||||
|
|
Loading…
Add table
Reference in a new issue