We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf0645d commit 535c33eCopy full SHA for 535c33e
1 file changed
projects/net.splitcells.gel.editor/src/main/java/net/splitcells/gel/editor/Editor.java
@@ -111,6 +111,8 @@ public Optional<Object> resolveRaw(NameDesc name) {
111
return Optional.of(solutions.get(name.getValue()));
112
} else if (raters.hasKey(name.getValue())) {
113
return Optional.of(raters.get(name.getValue()));
114
+ } else if (integerVariables.hasKey(name.getValue())) {
115
+ return Optional.of(integerVariables.get(name.getValue()));
116
}
117
return Optional.empty();
118
0 commit comments