From 88cd5e888e6bcd611dbcd18648697ef2e6bcba04 Mon Sep 17 00:00:00 2001
From: Lioncash <mathew1800@gmail.com>
Date: Sat, 25 May 2019 04:34:51 -0400
Subject: [PATCH] configure_hotkeys: Remove unnecessary Settings::Apply() call

Nothing from the hotkeys dialog relies on this call occurring, and is
already called from the dialog that calls applyConfiguration().
---
 src/yuzu/configuration/configure_hotkeys.cpp | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/yuzu/configuration/configure_hotkeys.cpp b/src/yuzu/configuration/configure_hotkeys.cpp
index c486ac2ed8..9fb970c212 100644
--- a/src/yuzu/configuration/configure_hotkeys.cpp
+++ b/src/yuzu/configuration/configure_hotkeys.cpp
@@ -111,7 +111,6 @@ void ConfigureHotkeys::applyConfiguration(HotkeyRegistry& registry) {
     }
 
     registry.SaveHotkeys();
-    Settings::Apply();
 }
 
 void ConfigureHotkeys::retranslateUi() {