Skip to content

Commit

Permalink
Suppress System.Windows.Data Error warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
diluculo committed May 23, 2018
1 parent fbddde7 commit 271376d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Gemini/Modules/MainMenu/Views/MainMenuView.xaml.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
Expand All @@ -22,6 +22,10 @@ public partial class MainMenuView : UserControl
public MainMenuView()
{
InitializeComponent();

#if DEBUG
System.Diagnostics.PresentationTraceSources.DataBindingSource.Switch.Level = System.Diagnostics.SourceLevels.Critical;
#endif
}
}
}

0 comments on commit 271376d

Please sign in to comment.