Skip to content

Commit

Permalink
Moved a thing.
Browse files Browse the repository at this point in the history
  • Loading branch information
KFreon committed Feb 4, 2017
1 parent 1069009 commit f6dc41e
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions WPF_ME3Explorer/UI/ViewModels/TexplorerViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1092,21 +1092,20 @@ public void UpdateFTS()
break;
}

Application.Current.Dispatcher.BeginInvoke(new Action(() =>
{
DLCItemsView.Refresh();
ExclusionsItemsView.Refresh();
FileItemsView.Refresh();
}));


OnPropertyChanged(nameof(FTSDLCs));
OnPropertyChanged(nameof(FTSExclusions));
OnPropertyChanged(nameof(FTSGameFiles));

OnPropertyChanged(nameof(DLCItemsView));
OnPropertyChanged(nameof(ExclusionsItemsView));
OnPropertyChanged(nameof(FileItemsView));

Application.Current.Dispatcher.Invoke(new Action(() =>
{
DLCItemsView.Refresh();
ExclusionsItemsView.Refresh();
FileItemsView.Refresh();
}));
}

void GetDLCEntries(MEDirectories.MEDirectories direcs)
Expand Down

0 comments on commit f6dc41e

Please sign in to comment.