X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=blobdiff_plain;f=bundles%2Forg.simantics.selectionview%2Fsrc%2Forg%2Fsimantics%2Fselectionview%2FVariablePropertyLabelRule.java;h=9bce1aef1f27f0cad00f9f6b6d6212a0322da778;hp=f99f679efe4859813bdd8186605afeacb08c22af;hb=8e4e41fa135641b23f68e205832e0696951c5f63;hpb=7a7c389f2ffddb4e4170098e4f5facca1fa8b633 diff --git a/bundles/org.simantics.selectionview/src/org/simantics/selectionview/VariablePropertyLabelRule.java b/bundles/org.simantics.selectionview/src/org/simantics/selectionview/VariablePropertyLabelRule.java index f99f679ef..9bce1aef1 100644 --- a/bundles/org.simantics.selectionview/src/org/simantics/selectionview/VariablePropertyLabelRule.java +++ b/bundles/org.simantics.selectionview/src/org/simantics/selectionview/VariablePropertyLabelRule.java @@ -28,7 +28,7 @@ public class VariablePropertyLabelRule implements LabelRule { for(Variable property : variable.getProperties(graph)) { String column = property.getPossiblePropertyValue(graph, Variables.DISPLAY_COLUMN); if(column != null) { - String value = property.getValue(graph, Bindings.STRING); + String value = property.getPossibleValue(graph, Bindings.STRING); if (value != null) result.put(column, value); }