Skip to content

Commit 085afa1

Browse files
committed
Fire widget changed event whenever text changes
1 parent 075e939 commit 085afa1

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

app/src/org/commcare/views/widgets/ComboboxWidget.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,7 @@ public void onTextChanged(CharSequence s, int start, int before, int count) {
9595

9696
@Override
9797
public void afterTextChanged(Editable s) {
98-
if (s != null && s.toString().isEmpty()) {
99-
widgetEntryChanged();
100-
}
101-
clearWarningMessage();
98+
widgetEntryChanged();
10299
}
103100
});
104101
}

0 commit comments

Comments
 (0)