From a278eff55bb8dd647ffec91dbdd212bfacec0ca2 Mon Sep 17 00:00:00 2001 From: James Crook Date: Mon, 17 Aug 2020 11:22:20 +0100 Subject: [PATCH] Bug 2295 - Comment command always succeeds I had it set to always fail, with result that macro stopped at that point. --- src/commands/HelpCommand.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/HelpCommand.h b/src/commands/HelpCommand.h index d3329bcc9..a88529c12 100644 --- a/src/commands/HelpCommand.h +++ b/src/commands/HelpCommand.h @@ -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");};