[#40] Add button for adding new checklist.

This commit is contained in:
Franze Jr 2015-11-16 18:37:56 -03:00
parent 813674a328
commit 6f097f41f4

View file

@ -147,7 +147,7 @@ public class TaskFormActivity extends AppCompatActivity implements AdapterView.O
public void onClick(View v) {
String checklist = newCheckListEditText.getText().toString();
task.getChecklist().add(new ChecklistItem(checklist));
// EventBus.getDefault().post(task);
EventBus.getDefault().post(task);
}
});