From 8483a9f1369e7cfbddab19f293d1040402e70d5f Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Sat, 16 Sep 2023 12:03:00 -0700 Subject: [PATCH] Close PGUI on ctrl+w. --- PGUI.pyw | 1 + 1 file changed, 1 insertion(+) diff --git a/PGUI.pyw b/PGUI.pyw index 4bf0275..74ed952 100644 --- a/PGUI.pyw +++ b/PGUI.pyw @@ -84,6 +84,7 @@ class PGUILauncher(tkinter.Frame): ) self.filter_entry.bind('', self.launch_filtered) self.filter_entry.bind('', self.quit) + self.filter_entry.bind('', self.quit) self.open_folder_button = tkinter.Button( self.upper_frame,