Skip to content

Commit e55c226

Browse files
authored
Merge pull request #3445 from dimagi/emit-data-changed-on-comboboxwidget-item-delete-hotfix
Emit widget changed event on manual ComboboxWidget item deletion
2 parents b18424c + 085afa1 commit e55c226

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

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

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
11
package org.commcare.views.widgets;
22

3-
import android.annotation.TargetApi;
43
import android.content.Context;
5-
import android.os.Build;
64
import android.text.Editable;
75
import android.text.TextWatcher;
86
import android.util.TypedValue;
9-
import android.view.View;
10-
import android.widget.AdapterView;
117

128
import org.commcare.adapters.ComboboxAdapter;
139
import org.commcare.views.Combobox;
@@ -99,7 +95,7 @@ public void onTextChanged(CharSequence s, int start, int before, int count) {
9995

10096
@Override
10197
public void afterTextChanged(Editable s) {
102-
clearWarningMessage();
98+
widgetEntryChanged();
10399
}
104100
});
105101
}

0 commit comments

Comments
 (0)