From 808934483f37202ce1011e18a11db2a767aa419f Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Tue, 31 Aug 2010 01:30:20 -0400 Subject: [PATCH] Recurrence - Removed vestigial mask:"..." attribute from newly generated recurring task instances. --- src/recur.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/recur.cpp b/src/recur.cpp index f3fc53a2d..2ff9462f6 100644 --- a/src/recur.cpp +++ b/src/recur.cpp @@ -114,6 +114,8 @@ void handleRecurrence () sprintf (indexMask, "%u", (unsigned int) i); rec.set ("imask", indexMask); // Store index into mask. + rec.remove ("mask"); // Remove the mask of the parent. + // Add the new task to the vector, for immediate use. modified.push_back (rec);