Run formatter
This commit is contained in:
parent
7850a2b2aa
commit
47e2cc6f02
7 changed files with 43 additions and 40 deletions
|
@ -837,7 +837,8 @@ namespace Ryujinx.UI.App.Common
|
||||||
{
|
{
|
||||||
EnumerationOptions options = new()
|
EnumerationOptions options = new()
|
||||||
{
|
{
|
||||||
RecurseSubdirectories = true, IgnoreInaccessible = false,
|
RecurseSubdirectories = true,
|
||||||
|
IgnoreInaccessible = false,
|
||||||
};
|
};
|
||||||
|
|
||||||
IEnumerable<string> files = Directory.EnumerateFiles(appDir, "*", options).Where(
|
IEnumerable<string> files = Directory.EnumerateFiles(appDir, "*", options).Where(
|
||||||
|
@ -943,7 +944,8 @@ namespace Ryujinx.UI.App.Common
|
||||||
{
|
{
|
||||||
EnumerationOptions options = new()
|
EnumerationOptions options = new()
|
||||||
{
|
{
|
||||||
RecurseSubdirectories = true, IgnoreInaccessible = false,
|
RecurseSubdirectories = true,
|
||||||
|
IgnoreInaccessible = false,
|
||||||
};
|
};
|
||||||
|
|
||||||
IEnumerable<string> files = Directory.EnumerateFiles(appDir, "*", options)
|
IEnumerable<string> files = Directory.EnumerateFiles(appDir, "*", options)
|
||||||
|
|
|
@ -175,7 +175,8 @@ namespace Ryujinx.Ava.UI.ViewModels
|
||||||
Dispatcher.UIThread.InvokeAsync(() => SelectedUpdate = titleUpdate);
|
Dispatcher.UIThread.InvokeAsync(() => SelectedUpdate = titleUpdate);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (Exception ex)
|
}
|
||||||
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
Dispatcher.UIThread.InvokeAsync(() => ContentDialogHelper.CreateErrorDialog(LocaleManager.Instance.UpdateAndGetDynamicValue(LocaleKeys.DialogLoadFileErrorMessage, ex.Message, path)));
|
Dispatcher.UIThread.InvokeAsync(() => ContentDialogHelper.CreateErrorDialog(LocaleManager.Instance.UpdateAndGetDynamicValue(LocaleKeys.DialogLoadFileErrorMessage, ex.Message, path)));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue