Fixed a bug with subtasks tag view not working when tasks were added

pull/14/head
Sam Bosley 12 years ago
parent 4d7aa95ea2
commit 7560421141

@ -62,8 +62,15 @@ public class SubtasksTagListFragment extends TagViewFragment {
return true;
}
@Override
public void onTaskCreated(Task task) {
super.onTaskCreated(task);
helper.onCreateTask(task);
}
@Override
protected void onTaskDelete(Task task) {
super.onTaskDelete(task);
helper.onDeleteTask(task);
}

Loading…
Cancel
Save