From b3bc530cd05fd8c0323fff55ca47feae5efea5a0 Mon Sep 17 00:00:00 2001 From: Gabriel Hege Date: Thu, 11 Sep 2014 15:23:31 +0200 Subject: [PATCH] Android: accept() device-dialog by doubleclick Change-Id: I6b405b8eb9cc461b6081e3711be54c8d580e02b6 Reviewed-by: Daniel Teske --- src/plugins/android/androiddevicedialog.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/plugins/android/androiddevicedialog.cpp b/src/plugins/android/androiddevicedialog.cpp index 91dfc43c22c..7aba48b6d2a 100644 --- a/src/plugins/android/androiddevicedialog.cpp +++ b/src/plugins/android/androiddevicedialog.cpp @@ -414,6 +414,8 @@ AndroidDeviceDialog::AndroidDeviceDialog(int apiLevel, const QString &abi, QWidg connect(m_ui->createAVDButton, SIGNAL(clicked()), this, SLOT(createAvd())); + connect(m_ui->deviceView, SIGNAL(doubleClicked(QModelIndex)), + this, SLOT(accept())); connect(&m_futureWatcher, SIGNAL(finished()), this, SLOT(avdAdded()));