From 135005737e978e52816e3d6a3836185e4c2d5351 Mon Sep 17 00:00:00 2001 From: SutekhVRC Date: Sun, 1 May 2022 17:25:27 -0700 Subject: [PATCH] IntifaceCLI is now spawned hidden. --- src/ui.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ui.rs b/src/ui.rs index e0bd7a9..c1d7002 100644 --- a/src/ui.rs +++ b/src/ui.rs @@ -20,6 +20,7 @@ use std::process::{Child, Command}; use std::sync::mpsc::{self, Receiver, Sender}; use std::sync::Arc; use std::thread; +use std::os::windows::process::CommandExt; use std::time::{Duration, Instant}; use sysinfo::{ProcessExt, System, SystemExt}; use tokio::runtime::Runtime; @@ -520,6 +521,7 @@ impl VibeCheckGUI { "--log", "1", ]) + .creation_flags(0x08000000) .spawn() { Ok(p) => Some(p),