From 52cec1e1704a050e6d86b5ea61eef41d1d650b1e Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Fri, 21 Oct 2011 23:20:30 +1300 Subject: [PATCH] reduce default tooltip delay in cnc to a playable level --- OpenRA.Mods.Cnc/Widgets/TooltipContainerWidget.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.Cnc/Widgets/TooltipContainerWidget.cs b/OpenRA.Mods.Cnc/Widgets/TooltipContainerWidget.cs index 1cc4d04edd..8b9b0038bc 100755 --- a/OpenRA.Mods.Cnc/Widgets/TooltipContainerWidget.cs +++ b/OpenRA.Mods.Cnc/Widgets/TooltipContainerWidget.cs @@ -24,7 +24,7 @@ namespace OpenRA.Mods.Cnc.Widgets static readonly Action Nothing = () => {}; public int2 CursorOffset = new int2(0, 20); public Action BeforeRender = Nothing; - public int TooltipDelay = 10; + public int TooltipDelay = 2; Widget tooltip; public TooltipContainerWidget()