Skip to content
Snippets Groups Projects
Commit b11e0874 authored by Simon Barner's avatar Simon Barner
Browse files

Set null value if available values do not contain the current value

parent bcc339b2
No related branches found
No related tags found
1 merge request!393470 timing model
......@@ -3,7 +3,7 @@ ContextMenuSubMenuContributorBase.java 6275d96fe8690d9d4744bcbaef3c7d14ba8e30ff
DialogMessageHandler.java 8714da09a777c8557de0a5c48ff68c340f9fa91d GREEN
EObjectActionBase.java 4ef9f8be59e64d4838acc9e268d418ba5d94fa1a GREEN
EReferenceListPropertySectionBase.java bbc5f6851842a9cb0af5e9898d9c6e197a36312a YELLOW
EReferencePropertySectionBase.java 45411fc3bae5b9251fb465ec36fc39f0f4d5dc44 YELLOW
EReferencePropertySectionBase.java 0548da6778516003257f59d0b4c2b60d458be3b6 YELLOW
EditorBase.java 9c09fff92945256bb8680992ae7bb2c78f47b150 GREEN
IListPropertySection.java a093a8a625d291b8adecec5082e32748a2d99f9e YELLOW
ModelEditorBindingBase.java 4c5ac569c0b6e7678fc8191096b26dfd09fdcb98 GREEN
......
......@@ -185,7 +185,7 @@ public abstract class EReferencePropertySectionBase<I extends EObject, R extends
// Set initial selection
EObject value = getModelValue(input);
setSelection(value);
setSelection(values.contains(value) ? value : null);
}
/** Sets the selection of the {@link #modelReferenceCombo} . */
......
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