Skip to content

Commit

Permalink
[Debugging] Add toggle for FirstChanceException. Fix #567
Browse files Browse the repository at this point in the history
  • Loading branch information
LiorBanai committed Oct 17, 2020
1 parent 70fdbee commit 1089c7e
Show file tree
Hide file tree
Showing 6 changed files with 472 additions and 359 deletions.
1 change: 1 addition & 0 deletions Analogy/CommonChangeLog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ public static IEnumerable<AnalogyChangeLog> GetChangeLog()
{
return new List<AnalogyChangeLog>
{
new AnalogyChangeLog("V4.2.10 - [Debugging] Add toggle for FirstChanceException #567",AnalogChangeLogType.Improvement,"Lior Banai",new DateTime(2020,10,17)),
new AnalogyChangeLog("V4.2.10 - Remove focus on mouse over for filtering text boxes #566",AnalogChangeLogType.Improvement,"Lior Banai",new DateTime(2020,10,17)),
new AnalogyChangeLog("V4.2.10 - [UI] Add Open folder dialog button #527",AnalogChangeLogType.Improvement,"Lior Banai",new DateTime(2020,10,10)),
new AnalogyChangeLog("V4.2.10 - Enable Nullable annotations #559",AnalogChangeLogType.Improvement,"Lior Banai",new DateTime(2020,10,10)),
Expand Down
49 changes: 31 additions & 18 deletions Analogy/Forms/MainForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions Analogy/Forms/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1877,6 +1877,12 @@ private void btnSettingsUpdate_ItemClick(object sender, ItemClickEventArgs e)
UserSettingsForm user = new UserSettingsForm(9);
user.ShowDialog(this);
}

private void btnSettingsDebugging_ItemClick(object sender, ItemClickEventArgs e)
{
UserSettingsForm user = new UserSettingsForm(10);
user.ShowDialog(this);
}
}
}

Loading

0 comments on commit 1089c7e

Please sign in to comment.