diff options
author | Erdem Keskin <erdemkeskines@gmail.com> | 2023-05-03 17:04:40 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-03 16:04:40 +0200 |
commit | 6279f5e4305b1dd5844c0a0e3538fcdd72e6bf33 (patch) | |
tree | a85e8329e6fcab416183d591b59da8af4d81cdba | |
parent | b7d2bff6aab6a2f8eb501af2a12fac87d2834f06 (diff) |
Update SettingsWindow.cs (#4785)1.1.747
fix saving if directory path directly pasted in to the text field instead of using FileChooser.
-rw-r--r-- | src/Ryujinx/Ui/Windows/SettingsWindow.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Ryujinx/Ui/Windows/SettingsWindow.cs b/src/Ryujinx/Ui/Windows/SettingsWindow.cs index 3fb0447d..7d39b9ea 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 +} |