Move the open logs folder from setting into the File menu in the main window (#1550)

This commit is contained in:
Xpl0itR 2020-09-20 05:31:05 +01:00 committed by GitHub
parent 31a84eedcb
commit d0e36b7b19
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 26 additions and 33 deletions

View file

@ -882,7 +882,7 @@ namespace Ryujinx.Ui
private void Open_Ryu_Folder(object sender, EventArgs args)
{
Process.Start(new ProcessStartInfo()
Process.Start(new ProcessStartInfo
{
FileName = AppDataManager.BaseDirPath,
UseShellExecute = true,
@ -890,6 +890,21 @@ namespace Ryujinx.Ui
});
}
private void OpenLogsFolder_Pressed(object sender, EventArgs args)
{
string logPath = System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Logs");
DirectoryInfo directory = new DirectoryInfo(logPath);
directory.Create();
Process.Start(new ProcessStartInfo
{
FileName = logPath,
UseShellExecute = true,
Verb = "open"
});
}
private void Exit_Pressed(object sender, EventArgs args)
{
End(_emulationContext);