mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-13 12:14:16 +01:00
Verified Checkmark - Better Colors (#1455)
This commit is contained in:
parent
c1e8fd3519
commit
7902e85b30
1 changed files with 3 additions and 2 deletions
|
|
@ -1738,8 +1738,9 @@ internal class PluginInstallerWindow : Window, IDisposable
|
||||||
ImGui.SameLine();
|
ImGui.SameLine();
|
||||||
|
|
||||||
var verifiedOutlineColor = KnownColor.White.Vector() with { W = 0.75f };
|
var verifiedOutlineColor = KnownColor.White.Vector() with { W = 0.75f };
|
||||||
|
var unverifiedOutlineColor = KnownColor.Black.Vector();
|
||||||
var verifiedIconColor = KnownColor.RoyalBlue.Vector() with { W = 0.75f };
|
var verifiedIconColor = KnownColor.RoyalBlue.Vector() with { W = 0.75f };
|
||||||
var unverifiedIconColor = KnownColor.Orange.Vector() with { W = 0.75f };
|
var unverifiedIconColor = KnownColor.Orange.Vector();
|
||||||
|
|
||||||
if (!isThirdParty)
|
if (!isThirdParty)
|
||||||
{
|
{
|
||||||
|
|
@ -1748,7 +1749,7 @@ internal class PluginInstallerWindow : Window, IDisposable
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
this.DrawFontawesomeIconOutlined(FontAwesomeIcon.ExclamationCircle, verifiedOutlineColor, unverifiedIconColor);
|
this.DrawFontawesomeIconOutlined(FontAwesomeIcon.ExclamationCircle, unverifiedOutlineColor, unverifiedIconColor);
|
||||||
this.VerifiedCheckmarkFadeTooltip(label, Locs.VerifiedCheckmark_UnverifiedTooltip);
|
this.VerifiedCheckmarkFadeTooltip(label, Locs.VerifiedCheckmark_UnverifiedTooltip);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue