fix
This commit is contained in:
parent
06412b182e
commit
e462dc2990
2 changed files with 7 additions and 2 deletions
|
@ -111,6 +111,7 @@ setInterval(() => {
|
|||
}
|
||||
}
|
||||
|
||||
// Add about text in settings
|
||||
if (
|
||||
document.getElementsByClassName("dirscordScreenaudioAboutText").length == 0
|
||||
) {
|
||||
|
@ -123,4 +124,8 @@ setInterval(() => {
|
|||
el.appendChild(aboutEl);
|
||||
}
|
||||
}
|
||||
|
||||
// Remove stream settings if stream is active
|
||||
document.getElementById("manage-streams-change-windows")?.remove();
|
||||
document.querySelector(`[aria-label="Stream Settings"]`)?.remove();
|
||||
}, 1000);
|
||||
|
|
|
@ -84,7 +84,7 @@ void DiscordPage::stopVirtmic() {
|
|||
}
|
||||
|
||||
void DiscordPage::startVirtmic(QString target) {
|
||||
if (target != "") {
|
||||
if (target != "None") {
|
||||
qDebug() << "[virtmic] Starting Virtmic with target" << target;
|
||||
m_virtmicProcess.start(QApplication::arguments()[0], {"--virtmic", target});
|
||||
}
|
||||
|
@ -111,7 +111,7 @@ void DiscordPage::startStream(QString target, uint width, uint height,
|
|||
stopVirtmic();
|
||||
startVirtmic(target);
|
||||
// Wait a bit for the virtmic to start
|
||||
QTimer::singleShot(target == "" ? 0 : 200, [=]() {
|
||||
QTimer::singleShot(target == "None" ? 0 : 200, [=]() {
|
||||
runJavaScript(QString("window.discordScreenaudioStartStream(%1, %2, %3);")
|
||||
.arg(width)
|
||||
.arg(height)
|
||||
|
|
Loading…
Reference in a new issue