TW-1877: task done, task edit, task is now pending

- Thanks to Eric Hymowitz.
This commit is contained in:
Paul Beckingham 2017-01-16 20:48:45 -05:00
parent 54c1ca0786
commit 3e7958619a
3 changed files with 3 additions and 1 deletions

View file

@ -310,3 +310,4 @@ suggestions:
Sergey Trofimov Sergey Trofimov
eezewaek eezewaek
Hubert Toullec Hubert Toullec
Eric Hymowitz

View file

@ -47,6 +47,8 @@
(thanks to eezewaek). (thanks to eezewaek).
- TW-1873 Specify different path to extensions/hooks directory - TW-1873 Specify different path to extensions/hooks directory
(thanks to Eli). (thanks to Eli).
- TW-1877 task done, task edit, task is now pending
(thanks to Eric Hymowitz).
- TW-1878 uuids subcommand produces a space-delimited list, not comma-delimited - TW-1878 uuids subcommand produces a space-delimited list, not comma-delimited
(thanks to Scott Kostyshak). (thanks to Scott Kostyshak).
- TW-1881 Missing last character(s) in Description field - TW-1881 Missing last character(s) in Description field

View file

@ -458,7 +458,6 @@ void CmdEdit::parseTask (Task& task, const std::string& after, const std::string
if (task.get ("scheduled") != "") if (task.get ("scheduled") != "")
{ {
context.footnote (STRING_EDIT_SCHED_DEL); context.footnote (STRING_EDIT_SCHED_DEL);
task.setStatus (Task::pending);
task.remove ("scheduled"); task.remove ("scheduled");
} }
} }