From d006a2820b40b4ee98a2be128d8ebae55ffb34f1 Mon Sep 17 00:00:00 2001 From: Tomas Babej Date: Tue, 22 Sep 2015 07:46:26 +0200 Subject: [PATCH] CmdExport: Do not use context Per the design of the context feature, 'task export' is not supposed to leverage context. This is a regression from 2.4.4. --- src/commands/CmdExport.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/CmdExport.cpp b/src/commands/CmdExport.cpp index 48362a024..eebd3bf74 100644 --- a/src/commands/CmdExport.cpp +++ b/src/commands/CmdExport.cpp @@ -42,7 +42,7 @@ CmdExport::CmdExport () _read_only = true; _displays_id = true; _needs_gc = true; - _uses_context = true; + _uses_context = false; _accepts_filter = true; _accepts_modifications = false; _accepts_miscellaneous = false;