From fb8cab80055cac9b30f8700b410df0db279febe6 Mon Sep 17 00:00:00 2001 From: Dorian Zedler Date: Fri, 17 Feb 2023 16:48:37 +0100 Subject: [PATCH] Fix: don't show console on windows --- receiver/src/main.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/receiver/src/main.rs b/receiver/src/main.rs index 9fbb110..4f97e5f 100644 --- a/receiver/src/main.rs +++ b/receiver/src/main.rs @@ -1,3 +1,5 @@ +#![windows_subsystem = "windows"] + use iced::Sandbox; mod comm;