From 6279f5e4305b1dd5844c0a0e3538fcdd72e6bf33 Mon Sep 17 00:00:00 2001 From: Erdem Keskin Date: Wed, 3 May 2023 17:04:40 +0300 Subject: [PATCH] Update SettingsWindow.cs (#4785) fix saving if directory path directly pasted in to the text field instead of using FileChooser. --- src/Ryujinx/Ui/Windows/SettingsWindow.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Ryujinx/Ui/Windows/SettingsWindow.cs b/src/Ryujinx/Ui/Windows/SettingsWindow.cs index 3fb0447d3..7d39b9ea1 100644 --- a/src/Ryujinx/Ui/Windows/SettingsWindow.cs +++ b/src/Ryujinx/Ui/Windows/SettingsWindow.cs @@ -720,6 +720,7 @@ namespace Ryujinx.Ui.Windows if (Directory.Exists(_addGameDirBox.Buffer.Text)) { _gameDirsBoxStore.AppendValues(_addGameDirBox.Buffer.Text); + _directoryChanged = true; } else { @@ -835,4 +836,4 @@ namespace Ryujinx.Ui.Windows Dispose(); } } -} \ No newline at end of file +}