mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 20:58:34 +01:00
added a separate style property for tooltip text color
This commit is contained in:
parent
043369b1ad
commit
e7f2c8eca4
2 changed files with 5 additions and 0 deletions
|
@ -70,6 +70,7 @@ namespace MLEM.Ui.Elements {
|
||||||
base.InitStyle(style);
|
base.InitStyle(style);
|
||||||
this.Texture.SetFromStyle(style.TooltipBackground);
|
this.Texture.SetFromStyle(style.TooltipBackground);
|
||||||
this.MouseOffset.SetFromStyle(style.TooltipOffset);
|
this.MouseOffset.SetFromStyle(style.TooltipOffset);
|
||||||
|
this.Paragraph?.TextColor.SetFromStyle(style.TooltipTextColor);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
@ -104,6 +104,10 @@ namespace MLEM.Ui.Style {
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public Vector2 TooltipOffset;
|
public Vector2 TooltipOffset;
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// The color that the text of a <see cref="Tooltip"/> should have
|
||||||
|
/// </summary>
|
||||||
|
public Color TooltipTextColor;
|
||||||
|
/// <summary>
|
||||||
/// The texture that the <see cref="ProgressBar"/> element uses for its background
|
/// The texture that the <see cref="ProgressBar"/> element uses for its background
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public NinePatch ProgressBarTexture;
|
public NinePatch ProgressBarTexture;
|
||||||
|
|
Loading…
Reference in a new issue