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:
parent
85f1ec7a5d
commit
b2d2b7268f
@ -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
|
||||||
|
@ -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();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user