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 fa5133b commit 49f4950Copy full SHA for 49f4950
src/main/java/org/scijava/widget/DefaultWidgetModel.java
@@ -156,6 +156,7 @@ public void setValue(final Object value) {
156
157
// Pass the value through the convertService
158
convertedInput = convertService.convert(value, item.getType());
159
+ if (convertedInput == null) convertedInput = value;
160
161
// If we get a different (converted) value back, cache it weakly.
162
if (convertedInput != value) {
0 commit comments