diff options
author | Michael BrĂ¼ning <michael.bruning@qt.io> | 2024-06-26 13:07:47 +0200 |
---|---|---|
committer | Qt Cherry-pick Bot <cherrypick_bot@qt-project.org> | 2024-08-12 13:16:50 +0000 |
commit | 1029a2af2a9131bdb234ce5932b8d18511a09d04 (patch) | |
tree | c3e1ce8756e3c510243dbccb8457022a301071c7 | |
parent | 7634c32fb4652eb9143b2f678ee5627bdd26a1e7 (diff) |
Mention need for --webEngineArgs also in command line options section
We are referring to the command line options section from other sections, so it makes sense to mention the need to use --webEngineArgs there.
Pick-to: 6.5
Fixes: QTBUG-124878
Change-Id: I600bfcd8cf2d8aada53b883608e2a10ea932bdc2
Reviewed-by: Michal Klocek <michal.klocek@qt.io>
(cherry picked from commit 4f2c8c194b535b54b1cba0f0f0e47a9f9e707cf2)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
(cherry picked from commit b6d619ef94566f74baa33d8514bf54819c63b839)
-rw-r--r-- | src/core/doc/src/qtwebengine-debugging.qdoc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/core/doc/src/qtwebengine-debugging.qdoc b/src/core/doc/src/qtwebengine-debugging.qdoc index 3dd4d9276..1d996ad7d 100644 --- a/src/core/doc/src/qtwebengine-debugging.qdoc +++ b/src/core/doc/src/qtwebengine-debugging.qdoc @@ -90,6 +90,14 @@ sandboxing of the network service though. \endlist + Any WebEngine command line options should be specified after the + \c {--webEngineArgs} option, which is used to separate the user's application + specific options from the WebEngine's ones. + + \badcode + --webEngineArgs [WebEngine specific options] + \endcode + Alternatively, the environment variable QTWEBENGINE_CHROMIUM_FLAGS can be set. For example, the following value could be set to disable logging while debugging an application called \e mybrowser: |