mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-15 12:51:00 +02:00
doc: -help-debug implies -help
I don't understand why `-help-debug` would be useful without requesting the help, and I've made this particular mistake one time too many. (ok, so apparently the original reason that -help-debug is an option is to show debug options in the GUI option overview? that seems very unlikely to ever be used, if someone wants to add a way to show debug options in the GUI it'd be better to have a check box)
This commit is contained in:
parent
1c12cf6073
commit
d0b1cee1fe
3 changed files with 2 additions and 3 deletions
|
|
@ -660,7 +660,7 @@ std::string ArgsManager::GetHelpMessage() const
|
|||
|
||||
bool HelpRequested(const ArgsManager& args)
|
||||
{
|
||||
return args.IsArgSet("-?") || args.IsArgSet("-h") || args.IsArgSet("-help");
|
||||
return args.IsArgSet("-?") || args.IsArgSet("-h") || args.IsArgSet("-help") || args.IsArgSet("-help-debug");
|
||||
}
|
||||
|
||||
static const int screenWidth = 79;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue