From f00cf908fdcdff676e95e563b2a93e2d4af05bc7 Mon Sep 17 00:00:00 2001
From: Louie Shprung <lshprung@tutanota.com>
Date: Wed, 14 Aug 2024 14:16:54 -0400
Subject: Compile on Windows

---
 .gitignore         | 3 +++
 src/windows/draw.c | 4 +---
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/.gitignore b/.gitignore
index 2093e21..7edf854 100644
--- a/.gitignore
+++ b/.gitignore
@@ -58,7 +58,10 @@ Makefile
 config.h
 nsis/installer.nsi
 spec/terminal-media-launcher.spec
+src/icon/*.res
 src/terminal-media-launcher
+src/*.dll
+src/*.exe
 src/*.o
 src/unix/*.o
 src/windows/*.o
diff --git a/src/windows/draw.c b/src/windows/draw.c
index 3b06b9f..cbc565f 100644
--- a/src/windows/draw.c
+++ b/src/windows/draw.c
@@ -6,10 +6,10 @@
 #include "../include/group.h"
 
 void launch(){
+	ENTRY **e = get_gentries(g[g_hover]);
 	char *program = get_gprog(g[g_hover]);
 	char *flags = get_gflags(g[g_hover]);
 	char *path = get_epath(e[e_hover[g_hover]]);
-	bool quotes = get_gquotes(g[g_hover]);
 	char file[BUF_LEN];
 	char params[BUF_LEN];
 
@@ -24,9 +24,7 @@ void launch(){
 	}
 
 	else{
-		if(quotes) strcat(file, "\"");
 		strcat(file, program);
-		if(quotes) strcat(file, "\"");
 
 		params[0] = '\0';
 		if(flags[0] != '\0'){
-- 
cgit