mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
[250262] [expressions] Changing the value of an expression member is not reflected in the view
This commit is contained in:
parent
b849e3cc0c
commit
b75a7f06bb
1 changed files with 2 additions and 2 deletions
|
@ -795,7 +795,7 @@ public class VariableVMNode extends AbstractExpressionVMNode
|
|||
(event instanceof PropertyChangeEvent &&
|
||||
((PropertyChangeEvent)event).getProperty() == IDebugVMConstants.CURRENT_FORMAT_STORAGE) )
|
||||
{
|
||||
return IModelDelta.STATE;
|
||||
return IModelDelta.CONTENT;
|
||||
}
|
||||
|
||||
if (event instanceof ISuspendedDMEvent)
|
||||
|
@ -827,7 +827,7 @@ public class VariableVMNode extends AbstractExpressionVMNode
|
|||
(event instanceof PropertyChangeEvent &&
|
||||
((PropertyChangeEvent)event).getProperty() == IDebugVMConstants.CURRENT_FORMAT_STORAGE) )
|
||||
{
|
||||
parentDelta.addNode(element, IModelDelta.STATE);
|
||||
parentDelta.addNode(element, IModelDelta.CONTENT);
|
||||
}
|
||||
|
||||
rm.done();
|
||||
|
|
Loading…
Add table
Reference in a new issue