mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-27 19:17:19 +02:00
Configuration
- New 'recurrence' configuration setting can disable recurring task generation.
This commit is contained in:
parent
8323407242
commit
4bdee56fa7
6 changed files with 15 additions and 0 deletions
|
@ -54,6 +54,11 @@ extern Context context;
|
|||
// child tasks need to be generated to fill gaps.
|
||||
void handleRecurrence ()
|
||||
{
|
||||
// Recurrence can be disabled.
|
||||
// Note: This is currently a workaround for TD-44, TW-1520.
|
||||
if (! context.config.getBoolean ("recurrence"))
|
||||
return;
|
||||
|
||||
std::vector <Task> tasks = context.tdb2.pending.get_tasks ();
|
||||
Date now;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue