Fixed a bug in people control set

pull/14/head
Sam Bosley 13 years ago
parent c08e008be6
commit 207f33685f

@ -418,8 +418,10 @@ public class EditPeopleControlSet extends PopupControlSet {
}
public void assignToMe() {
assignedList.performItemClick(assignedList.getChildAt(0), 0, 0);
refreshDisplayView();
if (assignedList != null && assignedList.getChildAt(0) != null) {
assignedList.performItemClick(assignedList.getChildAt(0), 0, 0);
refreshDisplayView();
}
}
private void setUpListeners() {

@ -213,6 +213,7 @@ public class AstridActivity extends FragmentActivity
});
} catch (Exception e) {
// Don't worry about it
e.printStackTrace();
}
}

Loading…
Cancel
Save