From 87c107c8253e4e2fc86352d2819de28bc6c65f41 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Mon, 8 Apr 2013 20:25:13 +1200 Subject: [PATCH] Increase default tooltip delay to 200ms. --- OpenRA.Game/Widgets/TooltipContainerWidget.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Game/Widgets/TooltipContainerWidget.cs b/OpenRA.Game/Widgets/TooltipContainerWidget.cs index 5d0827a425..6e0b9a7bee 100755 --- a/OpenRA.Game/Widgets/TooltipContainerWidget.cs +++ b/OpenRA.Game/Widgets/TooltipContainerWidget.cs @@ -23,7 +23,7 @@ namespace OpenRA.Widgets static readonly Action Nothing = () => {}; public int2 CursorOffset = new int2(0, 20); public Action BeforeRender = Nothing; - public int TooltipDelay = 2; + public int TooltipDelay = 5; Widget tooltip; public TooltipContainerWidget()