From 39545c71503d191182612a5e7eeadcfa49dca2d5 Mon Sep 17 00:00:00 2001 From: atlimit8 Date: Wed, 18 Nov 2015 01:57:40 -0600 Subject: [PATCH] Remove editor actor selection tooltip blank line --- OpenRA.Mods.Common/Widgets/Logic/Editor/ActorSelectorLogic.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.Common/Widgets/Logic/Editor/ActorSelectorLogic.cs b/OpenRA.Mods.Common/Widgets/Logic/Editor/ActorSelectorLogic.cs index 266f7464b3..edf40a71ec 100644 --- a/OpenRA.Mods.Common/Widgets/Logic/Editor/ActorSelectorLogic.cs +++ b/OpenRA.Mods.Common/Widgets/Logic/Editor/ActorSelectorLogic.cs @@ -137,7 +137,7 @@ namespace OpenRA.Mods.Common.Widgets.Logic item.IsVisible = () => true; var tooltip = actor.TraitInfoOrDefault(); - item.GetTooltipText = () => (tooltip == null ? "\nType: " : tooltip.Name + "\nType: ") + actor.Name; + item.GetTooltipText = () => (tooltip == null ? "Type: " : tooltip.Name + "\nType: ") + actor.Name; panel.AddChild(item); }