Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Qt/NetPlayBrowser: Connect to session on double-click
  • Loading branch information
spycrab committed Apr 23, 2019
1 parent 127b4e7 commit e97c61c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp
Expand Up @@ -136,8 +136,10 @@ void NetPlayBrowser::ConnectWidgets()

connect(m_edit_name, &QLineEdit::textChanged, this, &NetPlayBrowser::Refresh);
connect(m_edit_game_id, &QLineEdit::textChanged, this, &NetPlayBrowser::Refresh);

connect(m_table_widget, &QTableWidget::itemSelectionChanged, this,
&NetPlayBrowser::OnSelectionChanged);
connect(m_table_widget, &QTableWidget::itemDoubleClicked, this, &NetPlayBrowser::accept);
}

void NetPlayBrowser::Refresh()
Expand Down Expand Up @@ -266,6 +268,9 @@ void NetPlayBrowser::OnSelectionChanged()

void NetPlayBrowser::accept()
{
if (m_table_widget->selectedItems().isEmpty())
return;

const int index = m_table_widget->selectedItems()[0]->row();

NetPlaySession& session = m_sessions[index];
Expand Down

0 comments on commit e97c61c

Please sign in to comment.