From aae544befe94f2e682aceb7f6e848b2d99b9d529 Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Tue, 19 Feb 2019 14:16:28 -0500 Subject: [PATCH] Determinate order of names under Tools> Apply Macro... ... There was a complaint that it was neither by name or by date for some users --- src/BatchCommands.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/BatchCommands.cpp b/src/BatchCommands.cpp index eac1a57ea..3e6a5b961 100644 --- a/src/BatchCommands.cpp +++ b/src/BatchCommands.cpp @@ -997,6 +997,8 @@ wxArrayString MacroCommands::GetNames() names.Add(ff.GetName()); } + std::sort( names.begin(), names.end() ); + return names; }