mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-31 19:20:34 +00:00
clear checkboxes from filter
This commit is contained in:
parent
7adaa6cad7
commit
2aad1b1d01
1 changed files with 3 additions and 0 deletions
|
|
@ -264,6 +264,9 @@ public class TaskFilterDialog extends AlertDialog implements RadioGroup.OnChecke
|
|||
} else {
|
||||
this.activeTags = tagIds;
|
||||
}
|
||||
for (int index = 0; index < tagsList.getChildCount()-1; index++) {
|
||||
((AppCompatCheckBox)tagsList.getChildAt(index)).setChecked(false);
|
||||
}
|
||||
for (String tagId : this.activeTags) {
|
||||
int index = indexForId(tagId);
|
||||
if (index >= 0) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue