1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-15 06:52:34 +02:00
This commit is contained in:
Elias Steurer 2020-05-23 14:37:00 +02:00
parent d4ff126757
commit feaa87014d
2 changed files with 4 additions and 2 deletions

View File

@ -62,7 +62,9 @@ ScreenPlayWallpaper::ScreenPlayWallpaper(
QString::number(static_cast<double>(volume)),
QVariant::fromValue(fillMode).toString(),
QVariant::fromValue(type).toString(),
QString::number(checkWallpaperVisible)
QString::number(checkWallpaperVisible),
// Fixes issue 84 media key overlay
" --disable-features=HardwareMediaKeyHandling"
};
qDebug() << "Creating ScreenPlayWallpaper " << proArgs;

View File

@ -57,7 +57,7 @@ int main(int argc, char* argv[])
}
// 6 parameter + 1 OS working directory default paramter
if (argumentList.length() != 8) {
if (argumentList.length() != 9) {
return -3;
}