Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

Commit

Permalink
Fix Villian Tracker exception (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
chamons authored Mar 2, 2020
1 parent 0368756 commit 2bdf887
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion VillainTracker/VillainTrackerAppDelegate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ public override void DidFinishLaunching (NSNotification notification)
// initialize delegates after critical data initialized
villainsTableView.DataSource = new DataSource (this);
villainsTableView.Delegate = new VillainsTableViewDelegate (this);


notesView.Delegate = null;
notesView.TextDidChange += delegate {
villain.Notes = notesView.Value;
};
Expand Down

0 comments on commit 2bdf887

Please sign in to comment.