CmdAdd/Log: No longer obey context

Context is good for filtering, terrible for commands that do not take filters.
This commit is contained in:
Paul Beckingham 2015-09-06 14:05:58 -04:00
parent 9db03a317b
commit 77b17379d6
2 changed files with 3 additions and 3 deletions

View file

@ -43,7 +43,7 @@ CmdAdd::CmdAdd ()
_read_only = false;
_displays_id = false;
_needs_gc = false;
_uses_context = true;
_uses_context = false;
_accepts_filter = false;
_accepts_modifications = true;
_accepts_miscellaneous = false;

View file

@ -43,11 +43,11 @@ CmdLog::CmdLog ()
_read_only = false;
_displays_id = false;
_needs_gc = false;
_uses_context = true;
_uses_context = false;
_accepts_filter = false;
_accepts_modifications = true;
_accepts_miscellaneous = false;
_category = Command::Category::operation;
_category = Command::Category::operation;
}
////////////////////////////////////////////////////////////////////////////////