From 467dd5c85a0d54e4d6233fb4ed48c86ad4219454 Mon Sep 17 00:00:00 2001 From: bluepilledgreat <97983689+bluepilledgreat@users.noreply.github.com> Date: Sun, 20 Oct 2024 16:23:19 +0100 Subject: [PATCH] make ! close the completion window --- Bloxstrap/UI/Elements/Editor/BootstrapperEditorWindow.xaml.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Bloxstrap/UI/Elements/Editor/BootstrapperEditorWindow.xaml.cs b/Bloxstrap/UI/Elements/Editor/BootstrapperEditorWindow.xaml.cs index 38a2b93..459041c 100644 --- a/Bloxstrap/UI/Elements/Editor/BootstrapperEditorWindow.xaml.cs +++ b/Bloxstrap/UI/Elements/Editor/BootstrapperEditorWindow.xaml.cs @@ -143,6 +143,9 @@ namespace Bloxstrap.UI.Elements.Editor case ">": CloseCompletionWindow(); break; + case "!": + CloseCompletionWindow(); + break; } }