Increase default tooltip delay to 200ms.

This commit is contained in:
Paul Chote
2013-04-08 20:25:13 +12:00
parent 5580ad4663
commit 87c107c825

View File

@@ -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()