Remove custom tooltip timings (#19604)

This commit is contained in:
metalgearsloth
2023-09-11 13:53:35 +10:00
committed by GitHub
parent 965de89362
commit 88dfc59038
8 changed files with 1 additions and 19 deletions

View File

@@ -1239,7 +1239,6 @@ namespace Content.Client.Preferences.UI
{
Visible = false,
HorizontalExpand = true,
TooltipDelay = 0.2f,
MouseFilter = MouseFilterMode.Stop,
Children =
{
@@ -1258,7 +1257,6 @@ namespace Content.Client.Preferences.UI
if (job.LocalizedDescription != null)
{
_jobTitle.ToolTip = job.LocalizedDescription;
_jobTitle.TooltipDelay = 0.2f;
}
AddChild(new BoxContainer
@@ -1345,7 +1343,6 @@ namespace Content.Client.Preferences.UI
if (antag.Description != null)
{
_checkBox.ToolTip = Loc.GetString(antag.Description);
_checkBox.TooltipDelay = 0.2f;
}
AddChild(new BoxContainer
@@ -1387,7 +1384,6 @@ namespace Content.Client.Preferences.UI
if (trait.Description is { } desc)
{
_checkBox.ToolTip = Loc.GetString(desc);
_checkBox.TooltipDelay = 0.2f;
}
AddChild(new BoxContainer