From 4421b721e42227aa337c12d401025e5061341d5c Mon Sep 17 00:00:00 2001 From: Eugene Chornyi Date: Sun, 21 Mar 2021 09:59:23 +0100 Subject: [PATCH] Make all a synonym of any in cmd debug mode --- src/support/debug.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/support/debug.cpp b/src/support/debug.cpp index 6ec52a069c..c86e1c8678 100644 --- a/src/support/debug.cpp +++ b/src/support/debug.cpp @@ -72,7 +72,8 @@ DebugErrorItem errorTags[] = { { Debug::SELECTION, "selection", N_("Selection copy/paste mechanism")}, { Debug::FIND, "find", N_("Find and replace mechanism")}, { Debug::DEBUG, "debug", N_("Developers' general debug messages")}, - { Debug::ANY, "any", N_("All debugging messages")} + { Debug::ANY, "any", N_("All debugging messages")}, + { Debug::ANY, "all", N_("All debugging messages")} };