From f7491dbbc56620949c5305532b1e1fce68d17940 Mon Sep 17 00:00:00 2001 From: Chris Kaczor Date: Tue, 31 May 2016 10:41:15 -0400 Subject: [PATCH] Tweak to look better during startup --- Application/MainWindow/MainWindow.xaml.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Application/MainWindow/MainWindow.xaml.cs b/Application/MainWindow/MainWindow.xaml.cs index 5ef1304..5c57187 100644 --- a/Application/MainWindow/MainWindow.xaml.cs +++ b/Application/MainWindow/MainWindow.xaml.cs @@ -136,8 +136,6 @@ namespace FeedCenter private void InitializeDisplay() { - UpdateToolbarButtonState(); - // Get the last category (defaulting to none) _currentCategory = _database.Categories.FirstOrDefault(category => category.ID.ToString() == Settings.Default.LastCategoryID); DisplayCategory(); @@ -145,6 +143,8 @@ namespace FeedCenter // Get the current feed list to match the category _feedList = _currentCategory?.Feeds.ToList() ?? _database.Feeds.ToList(); + UpdateToolbarButtonState(); + // Clear the link list LinkTextList.Items.Clear();