Assorted bug fixes, remove dead Torch.Launcher project

This commit is contained in:
John Gross
2017-06-29 12:02:36 -07:00
parent 4b4a069adb
commit c220f899a3
43 changed files with 289 additions and 867 deletions

View File

@@ -68,8 +68,8 @@ namespace Torch.Server.Views
private void TreeViewItem_OnExpanded(object sender, RoutedEventArgs e)
{
LogManager.GetLogger("EntitiesControl").Debug(nameof(TreeViewItem_OnExpanded));
var item = (TreeViewItem)e.Source;
//Exact item that was expanded.
var item = (TreeViewItem)e.OriginalSource;
if (item.DataContext is ILazyLoad l)
l.Load();
}