diff options
| author | 2020-08-27 11:58:28 -0400 | |
|---|---|---|
| committer | 2020-09-04 12:23:25 -0400 | |
| commit | 6597b3817cd1e03577185aea7eb88856e046dc4d (patch) | |
| tree | 6ba2f9088f095377610cdba3af34422259a3a148 /src | |
| parent | applets/controller: Implement fallback applet for the SDL frontend (diff) | |
| download | yuzu-6597b3817cd1e03577185aea7eb88856e046dc4d.tar.gz yuzu-6597b3817cd1e03577185aea7eb88856e046dc4d.tar.xz yuzu-6597b3817cd1e03577185aea7eb88856e046dc4d.zip | |
main: Apply settings after applet configuration is complete.
Diffstat (limited to 'src')
| -rw-r--r-- | src/yuzu/main.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 2ac8344a3..68ad43a80 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp | |||
| @@ -295,6 +295,10 @@ void GMainWindow::ControllerSelectorReconfigureControllers( | |||
| 295 | 295 | ||
| 296 | emit ControllerSelectorReconfigureFinished(); | 296 | emit ControllerSelectorReconfigureFinished(); |
| 297 | 297 | ||
| 298 | // Don't forget to apply settings. | ||
| 299 | Settings::Apply(); | ||
| 300 | config->Save(); | ||
| 301 | |||
| 298 | UpdateStatusButtons(); | 302 | UpdateStatusButtons(); |
| 299 | } | 303 | } |
| 300 | 304 | ||