From 4579b82b82263459c3e4669f4db6cf9b73abbc31 Mon Sep 17 00:00:00 2001 From: Pixeluted Date: Thu, 9 May 2024 20:24:59 +0200 Subject: [PATCH] Fixed additional console window being shown on release --- src/main.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.rs b/src/main.rs index e8fdb4a..9e18f44 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,5 @@ +#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] + mod app; mod scan;