Qt: Fix hitting enter on game list not launching game

This commit is contained in:
Connor McLaughlin
2020-10-03 11:58:52 +10:00
parent e9e3891f9e
commit e2a4129c30
2 changed files with 6 additions and 6 deletions

View File

@@ -49,11 +49,11 @@ Q_SIGNALS:
private Q_SLOTS:
void onGameListRefreshed();
void onSelectionModelCurrentChanged(const QModelIndex& current, const QModelIndex& previous);
void onTableViewItemDoubleClicked(const QModelIndex& index);
void onTableViewItemActivated(const QModelIndex& index);
void onTableViewContextMenuRequested(const QPoint& point);
void onTableViewHeaderContextMenuRequested(const QPoint& point);
void onTableViewHeaderSortIndicatorChanged(int, Qt::SortOrder);
void onListViewItemDoubleClicked(const QModelIndex& index);
void onListViewItemActivated(const QModelIndex& index);
void onListViewContextMenuRequested(const QPoint& point);
public Q_SLOTS: