1
mirror of https://invent.kde.org/network/falkon.git synced 2024-12-20 18:56:34 +01:00

Process the "--help-all" CLI argument

BUG: 477492
FIXED-IN: 23.08.4

Based upon: a11233cd5c

Signed-off-by: Juraj Oravec <jurajoravec@mailo.com>
This commit is contained in:
Juraj Oravec 2023-11-27 07:43:47 +01:00
parent 85f1ec7a5d
commit b2d2b7268f
Signed by: SGOrava
GPG Key ID: 13660A3F1D9F093B
2 changed files with 5 additions and 0 deletions

View File

@ -1,6 +1,7 @@
Version 23.08.4 Version 23.08.4
* Fix crash when starting new session after crash (BUG: 408701) * Fix crash when starting new session after crash (BUG: 408701)
* Fix Startpage search engine default configuration (BUG: 419530) * Fix Startpage search engine default configuration (BUG: 419530)
* CLI option "--help-all" now works (BUG: 477492)
Version 23.08.0 Version 23.08.0
* A bit faster restoring of session with a lot of tabs * A bit faster restoring of session with a lot of tabs

View File

@ -106,6 +106,10 @@ void CommandLineOptions::parseActions()
parser.showHelp(); parser.showHelp();
} }
if (parser.isSet(QSL("help-all"))) {
parser.process({QSL("falkon"), QSL("--help-all")});
}
if (parser.isSet(versionOption)) { if (parser.isSet(versionOption)) {
parser.showVersion(); parser.showVersion();
} }