From ef557fce7f93a03e5ff7a81a74235b2f111ae427 Mon Sep 17 00:00:00 2001
From: spherallic <spherallic@gmail.com>
Date: Tue, 9 May 2023 16:00:35 +0200
Subject: [PATCH] Add Tab to the list of special controls

---
 Source/Core/Windows/PreferencesForm.cs | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Source/Core/Windows/PreferencesForm.cs b/Source/Core/Windows/PreferencesForm.cs
index 594bcbb9..f5bf57bd 100644
--- a/Source/Core/Windows/PreferencesForm.cs
+++ b/Source/Core/Windows/PreferencesForm.cs
@@ -635,6 +635,8 @@ namespace CodeImp.DoomBuilder.Windows
         private void FillControlsList(Action a)
         {
 			actioncontrol.Items.Clear();
+
+			actioncontrol.Items.Add(new KeyControl(Keys.Tab, "Tab"));
 			
 			// Fill combobox with special controls
 			if(a.AllowMouse)
-- 
GitLab