From 384435f8eb9d7d3cc9500afeecc40c9a45d199a4 Mon Sep 17 00:00:00 2001 From: Gustas <37534529+PunkPun@users.noreply.github.com> Date: Wed, 15 Mar 2023 11:49:21 +0200 Subject: [PATCH] Remove annoying autocomplete suffix --- OpenRA.Mods.Common/Widgets/Logic/TabCompletionLogic.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.Common/Widgets/Logic/TabCompletionLogic.cs b/OpenRA.Mods.Common/Widgets/Logic/TabCompletionLogic.cs index a0d394b0d4..3169f96268 100644 --- a/OpenRA.Mods.Common/Widgets/Logic/TabCompletionLogic.cs +++ b/OpenRA.Mods.Common/Widgets/Logic/TabCompletionLogic.cs @@ -59,7 +59,7 @@ namespace OpenRA.Mods.Common.Widgets.Logic else { prefix = ""; - suffix = ": "; + suffix = " "; toComplete = text; }