1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-02 08:59:28 +02:00

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

View File

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