Fix crash loading feed window

This commit is contained in:
2014-10-25 08:10:07 -04:00
parent 79d4e6a432
commit ca40e7237b

View File

@@ -1,4 +1,5 @@
using Common.Wpf.Extensions;
using System.Data.Entity;
using Common.Wpf.Extensions;
using System.Linq;
using System.Windows;
using System.Windows.Controls;
@@ -16,8 +17,10 @@ namespace FeedCenter.Options
public bool? Display(FeedCenterEntities database, Feed feed, Window owner)
{
database.Categories.Load();
// Bind the category combo box
categoryComboBox.ItemsSource = database.Categories;
categoryComboBox.ItemsSource = database.Categories.Local;
// Set the data context
DataContext = feed;