Jonas Gutenschwager 3 سال پیش
والد
کامیت
887ed5c0e2
2فایلهای تغییر یافته به همراه2 افزوده شده و 4 حذف شده
  1. 1 2
      src/yuzu/configuration/config.cpp
  2. 1 2
      src/yuzu/hotkeys.cpp

+ 1 - 2
src/yuzu/configuration/config.cpp

@@ -756,8 +756,7 @@ void Config::ReadShortcutValues() {
              {ReadSetting(QStringLiteral("KeySeq"), shortcut.keyseq).toString(),
              {ReadSetting(QStringLiteral("KeySeq"), shortcut.keyseq).toString(),
               ReadSetting(QStringLiteral("Controller_KeySeq"), shortcut.controller_keyseq)
               ReadSetting(QStringLiteral("Controller_KeySeq"), shortcut.controller_keyseq)
                   .toString(),
                   .toString(),
-              shortcut.context,
-              ReadSetting(QStringLiteral("Repeat"), shortcut.repeat).toBool()}});
+              shortcut.context, ReadSetting(QStringLiteral("Repeat"), shortcut.repeat).toBool()}});
         qt_config->endGroup();
         qt_config->endGroup();
         qt_config->endGroup();
         qt_config->endGroup();
     }
     }

+ 1 - 2
src/yuzu/hotkeys.cpp

@@ -21,8 +21,7 @@ void HotkeyRegistry::SaveHotkeys() {
                 {hotkey.first, group.first,
                 {hotkey.first, group.first,
                  UISettings::ContextualShortcut({hotkey.second.keyseq.toString(),
                  UISettings::ContextualShortcut({hotkey.second.keyseq.toString(),
                                                  hotkey.second.controller_keyseq,
                                                  hotkey.second.controller_keyseq,
-                                                 hotkey.second.context,
-                                                 hotkey.second.repeat})});
+                                                 hotkey.second.context, hotkey.second.repeat})});
         }
         }
     }
     }
 }
 }