mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +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();
|
||||
|
||||
var verifiedOutlineColor = KnownColor.White.Vector() with { W = 0.75f };
|
||||
var unverifiedOutlineColor = KnownColor.Black.Vector();
|
||||
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)
|
||||
{
|
||||
|
|
@ -1748,7 +1749,7 @@ internal class PluginInstallerWindow : Window, IDisposable
|
|||
}
|
||||
else
|
||||
{
|
||||
this.DrawFontawesomeIconOutlined(FontAwesomeIcon.ExclamationCircle, verifiedOutlineColor, unverifiedIconColor);
|
||||
this.DrawFontawesomeIconOutlined(FontAwesomeIcon.ExclamationCircle, unverifiedOutlineColor, unverifiedIconColor);
|
||||
this.VerifiedCheckmarkFadeTooltip(label, Locs.VerifiedCheckmark_UnverifiedTooltip);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue