From d648964ae2e8d3ebcf50afb0b7b03c0ecb2e368c Mon Sep 17 00:00:00 2001 From: Almamu Date: Mon, 21 Apr 2025 17:44:01 +0200 Subject: [PATCH] fix: web subprocesses weren't launching due to parameter's parsing, temporal fix --- src/WallpaperEngine/Application/CApplicationContext.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/WallpaperEngine/Application/CApplicationContext.cpp b/src/WallpaperEngine/Application/CApplicationContext.cpp index c84978c..da45fef 100644 --- a/src/WallpaperEngine/Application/CApplicationContext.cpp +++ b/src/WallpaperEngine/Application/CApplicationContext.cpp @@ -281,7 +281,7 @@ CApplicationContext::CApplicationContext (int argc, char* argv []) : " Runs the background 2317494988 on two screens, one on HDMI-1 and the other on HDMI-2\n\n" ); - program.parse_args (argc, argv); + program.parse_known_args (argc, argv); this->settings.audio.volume = std::max(0, std::min (this->settings.audio.volume, 128)); this->settings.screenshot.delay = std::max (0, std::min (this->settings.screenshot.delay, 5));