Skip to content

Commit

Permalink
Apply proper color to lock icon
Browse files Browse the repository at this point in the history
  • Loading branch information
DarwinBaker committed Dec 1, 2021
1 parent b706c9f commit e03640a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AATool/UI/Controls/UIRefreshIcon.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ protected override void UpdateThis(Time time)
}
this.button.Enabled = Tracker.SaveState is SaveFolderState.Valid;
this.lockIcon.SetTexture(TrackerSettings.LockWorld ? "locked" : "");
this.lockIcon.SetTint(ColorHelper.Fade(Color.White, 1 - (alpha * 4)));
this.lockIcon.SetTint(ColorHelper.Fade(Config.Main.TextColor, 1 - (alpha * 4)));
}
else
{
Expand Down

0 comments on commit e03640a

Please sign in to comment.