Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Network
Konqueror
Commits
208e7eec
Commit
208e7eec
authored
Mar 10, 2022
by
Stefano Crocco
Browse files
Append to environment variable instead of overwriting it
(cherry picked from commit
25d6079e
)
parent
93a1b098
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/konqapplication.cpp
View file @
208e7eec
...
...
@@ -38,7 +38,9 @@ KonquerorApplication::KonquerorApplication(int &argc, char **argv)
#endif
#ifdef WEBENGINEPART_RTC_PIPEWIRE_CAPTURER
qputenv
(
"QTWEBENGINE_CHROMIUM_FLAGS"
,
"--enable-features=WebRTCPipeWireCapturer"
);
QByteArray
flags
=
qgetenv
(
"QTWEBENGINE_CHROMIUM_FLAGS"
);
flags
.
append
(
" --enable-features=WebRTCPipeWireCapturer"
);
qputenv
(
"QTWEBENGINE_CHROMIUM_FLAGS"
,
flags
);
#endif
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment