Browse Source

Merge 215ca8ccff into 3f3ae2a5d4

pull/759/merge
Gerald Lochner 5 years ago committed by GitHub
parent
commit
0161d9abc5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      src/AddIns/Misc/StartPage/Project/Src/RecentProjectsControl.xaml.cs

7
src/AddIns/Misc/StartPage/Project/Src/RecentProjectsControl.xaml.cs

@ -79,10 +79,15 @@ namespace ICSharpCode.StartPage @@ -79,10 +79,15 @@ namespace ICSharpCode.StartPage
}
}
});
if (items.Count > 0) {
await Dispatcher.InvokeAsync(delegate
{
if (items.Count > 0)
{
lastProjectsListView.ItemsSource = items;
lastProjectsListView.Visibility = Visibility.Visible;
}
});
}
class RecentOpenItem : INotifyPropertyChanged

Loading…
Cancel
Save