Added double click to join a room

Can now double click on a room in the lobby to join
This commit is contained in:
Matt Lowe 2014-11-23 00:36:50 +01:00
parent 8c7aa41721
commit 6a44855a5c

View file

@ -76,6 +76,7 @@ GameSelector::GameSelector(AbstractClient *_client, const TabSupervisor *_tabSup
connect(joinButton, SIGNAL(clicked()), this, SLOT(actJoin()));
connect(spectateButton, SIGNAL(clicked()), this, SLOT(actJoin()));
connect(gameListView, SIGNAL(doubleClicked(const QModelIndex &)), this, SLOT(actJoin()));
}
void GameSelector::actSetFilter()