From 12486c16cc0794d6ea051b534f947d1bd15a87b6 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Mon, 16 Jan 2017 20:48:45 -0500 Subject: [PATCH] TW-1877: task done, task edit, task is now pending - Thanks to Eric Hymowitz. --- AUTHORS | 1 + ChangeLog | 2 ++ src/commands/CmdEdit.cpp | 1 - 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/AUTHORS b/AUTHORS index f63e42e88..cc6fb0a1d 100644 --- a/AUTHORS +++ b/AUTHORS @@ -310,3 +310,4 @@ suggestions: Sergey Trofimov eezewaek Hubert Toullec + Eric Hymowitz diff --git a/ChangeLog b/ChangeLog index fc7924dd0..4b2b52e92 100644 --- a/ChangeLog +++ b/ChangeLog @@ -47,6 +47,8 @@ (thanks to eezewaek). - TW-1873 Specify different path to extensions/hooks directory (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 (thanks to Scott Kostyshak). - TW-1881 Missing last character(s) in Description field diff --git a/src/commands/CmdEdit.cpp b/src/commands/CmdEdit.cpp index 633f02962..d3b618b43 100644 --- a/src/commands/CmdEdit.cpp +++ b/src/commands/CmdEdit.cpp @@ -458,7 +458,6 @@ void CmdEdit::parseTask (Task& task, const std::string& after, const std::string if (task.get ("scheduled") != "") { context.footnote (STRING_EDIT_SCHED_DEL); - task.setStatus (Task::pending); task.remove ("scheduled"); } }