Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #10687 from Sage-King/double_click_select_expressions
Added double click to add expressions when mapping
  • Loading branch information
AdmiralCurtiss committed May 21, 2022
2 parents 243df97 + f0454ab commit a6ace45
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp
Expand Up @@ -427,6 +427,7 @@ void IOWindow::Update()
void IOWindow::ConnectWidgets()
{
connect(m_select_button, &QPushButton::clicked, [this] { AppendSelectedOption(); });
connect(m_option_list, &QTableWidget::cellDoubleClicked, [this] { AppendSelectedOption(); });
connect(&Settings::Instance(), &Settings::ReleaseDevices, this, &IOWindow::ReleaseDevices);
connect(&Settings::Instance(), &Settings::DevicesChanged, this, &IOWindow::UpdateDeviceList);

Expand Down

0 comments on commit a6ace45

Please sign in to comment.