Skip to content

Commit

Permalink
Fix select one tag entry bug that caused crash with POIs.
Browse files Browse the repository at this point in the history
  • Loading branch information
hallahan committed Sep 17, 2016
1 parent 5a6e221 commit 954fddc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ public void onClick(View v) {
odkTag.putButtonIdToTagItemHash(id, item);
tagValueRadioGroup.addView(textView);
}
if (!prevTagValInTagItems) {
if (prevTagVal != null && !prevTagValInTagItems) {
customEditText.setText(prevTagVal);
}

Expand Down

0 comments on commit 954fddc

Please sign in to comment.