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

@@ -41,7 +41,6 @@ public sealed class ExamineButton : ContainerButton
}
ToolTip = verb.Message ?? verb.Text;
TooltipDelay = 0.3f; // if you're hovering over these icons, you probably want to know what they do.
Icon = new TextureRect
{

View File

@@ -2,7 +2,6 @@
<Button
Name="Button"
HorizontalExpand="True"
TooltipDelay="0.5"
Margin="0"
StyleClasses="ButtonSquare">
<BoxContainer Orientation="Horizontal">

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

View File

@@ -13,8 +13,7 @@
VerticalExpand="False"
StyleClasses="ButtonSquare"
Margin="0"
ToolTip="foobar"
TooltipDelay="0.25">
ToolTip="foobar">
<BoxContainer Orientation="Horizontal" Margin="0">
<TextureRect Name="Texture"
HorizontalExpand="False"

View File

@@ -13,7 +13,6 @@ public sealed class MenuButton : ContainerButton
[Dependency] private readonly IInputManager _inputManager = default!;
public const string StyleClassLabelTopButton = "topButtonLabel";
public const string StyleClassRedTopButton = "topButtonLabel";
private const float CustomTooltipDelay = 0.4f;
private static readonly Color ColorNormal = Color.FromHex("#7b7e9e");
private static readonly Color ColorRedNormal = Color.FromHex("#FEFEFE");
@@ -48,7 +47,6 @@ public sealed class MenuButton : ContainerButton
public MenuButton()
{
IoCManager.InjectDependencies(this);
TooltipDelay = CustomTooltipDelay;
_buttonIcon = new TextureRect()
{
TextureScale = new Vector2(0.5f, 0.5f),

View File

@@ -156,7 +156,6 @@ public sealed class ActionButton : Control
OnUnpressed(args);
};
TooltipDelay = 0.5f;
TooltipSupplier = SupplyTooltip;
}

View File

@@ -11,10 +11,6 @@ namespace Content.Client.UserInterface.Systems.Alerts.Controls
{
public sealed class AlertControl : BaseButton
{
// shorter than default tooltip delay so user can more easily
// see what alerts they have
private const float CustomTooltipDelay = 0.5f;
public AlertPrototype Alert { get; }
/// <summary>
@@ -48,7 +44,6 @@ namespace Content.Client.UserInterface.Systems.Alerts.Controls
public AlertControl(AlertPrototype alert, short? severity)
{
_gameTiming = IoCManager.Resolve<IGameTiming>();
TooltipDelay = CustomTooltipDelay;
TooltipSupplier = SupplyTooltip;
Alert = alert;
_severity = severity;

View File

@@ -18,8 +18,6 @@ namespace Content.Client.Verbs.UI
{
public const string StyleClassVerbMenuConfirmationTexture = "verbMenuConfirmationTexture";
public const float VerbTooltipDelay = 0.5f;
// Setters to provide access to children generated by XAML.
public bool IconVisible { set => Icon.Visible = value; }
public bool TextVisible { set => Label.Visible = value; }
@@ -30,7 +28,6 @@ namespace Content.Client.Verbs.UI
public VerbMenuElement(Verb verb) : base(verb.Text)
{
ToolTip = verb.Message;
TooltipDelay = VerbTooltipDelay;
Disabled = verb.Disabled;
Verb = verb;