Skip to content

Commit

Permalink
Merge branch 'Fix_difficulty_download_display'
Browse files Browse the repository at this point in the history
  • Loading branch information
NPBruce committed May 30, 2017
2 parents a9ceaa5 + 38c26f8 commit 64ce4cd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion unity/Assets/Scripts/Content/QuestDownload.cs
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,9 @@ public void DrawList()

ui = new UIElement(scrollArea.GetScrollTransform());
ui.SetLocation(UIScaler.GetRight(-11.95f) + (difficulty * 6.9f), offset + 1, (1 - difficulty) * 6.9f, 2);
ui.SetBGColor(new Color(1, 1, 1, 0.7f));
Color filter = bg;
filter.a = 0.7f;
ui.SetBGColor(filter);
}

// Size is 1.2 to be clear of characters with tails
Expand Down

0 comments on commit 64ce4cd

Please sign in to comment.