Bug 2295 - Comment command always succeeds

I had it set to always fail, with result that macro stopped at that point.
This commit is contained in:
James Crook 2020-08-17 11:22:20 +01:00
parent 894867d692
commit a278eff55b
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ public:
bool DefineParams( ShuttleParams & S ) override;
void PopulateOrExchange(ShuttleGui & S) override;
bool Apply(const CommandContext & context) override {
return false;
return true;
};
// AudacityCommand overrides
wxString ManualPage() override {return wxT("Extra_Menu:_Scriptables_II#comment");};