Can't async UI

This commit is contained in:
ZestyTS 2022-07-27 10:10:18 -07:00
parent 0721c8f5af
commit b7117d17f7

View file

@ -53,10 +53,10 @@ namespace UWUVCI_AIO_WPF.UI.Frames
parent.paths(false);
}
private async void Button_Click_3(object sender, RoutedEventArgs e)
private void Button_Click_3(object sender, RoutedEventArgs e)
{
MainViewModel mvm = FindResource("mvm") as MainViewModel;
await mvm.UpdateBaseAsync();
mvm.UpdateBaseAsync();
}
private void Button_Click_4(object sender, RoutedEventArgs e)