DolphinQt/Mapping: Add setting to enable waiting for alternate mappings

using the OR-operator.
This commit is contained in:
Jordan Woyak
2025-01-29 02:02:46 -06:00
parent cd3993708f
commit 6e7e808b66
7 changed files with 93 additions and 46 deletions

View File

@ -51,7 +51,8 @@ public:
int GetPort() const;
ControllerEmu::EmulatedController* GetController() const;
bool IsMappingAllDevices() const;
bool IsCreateOtherDeviceMappingsEnabled() const;
bool IsWaitForAlternateMappingsEnabled() const;
void ShowExtensionMotionTabs(bool show);
void ActivateExtensionTab();
@ -103,7 +104,8 @@ private:
QGroupBox* m_devices_box;
QHBoxLayout* m_devices_layout;
QComboBox* m_devices_combo;
QAction* m_all_devices_action;
QAction* m_other_device_mappings;
QAction* m_wait_for_alternate_mappings;
// Profiles
QGroupBox* m_profiles_box;