-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
Description
The use of user preferences to store selected tasks is broken:
- The state of the selected tasks (
tasksToSelectedandtaskList) is stored inMainActivity. But this is now a tab, so it is deleted and recreated when other tabs are selected. - When a new
MainActivitytab is created, it reloads tasksToSelected from the user preferences, overriding the current state of tasksToSelected in memory. This is bad
We need to move tasksToSelected to the TabActivity. Also, I think we discussed not storing user preferences for selected tasks anymore. As in, when the app loads, nothing is checked, and the user must select what they want to listen for.