Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
GlowPuff committed Jul 23, 2024
2 parents 5d9b5eb + 7985bd5 commit 3f97eb2
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions TranslatePanels/CampaignRewardsPanel.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ private void CreateUI( int index, List<CampaignReward> source, StackPanel panel,
{
source[index].name = (a as TextBox).Text.Trim();
} ) );
panel.Children.Add(UIFactory.TBlock("Extra"));
panel.Children.Add(UIFactory.TBox(source[index].extra, "", false, isEnabled, (a, b) =>
{
source[index].extra = (a as TextBox).Text.Trim();
}));
}

public override void PopulateUIMainTree()
Expand Down

0 comments on commit 3f97eb2

Please sign in to comment.