From e0711b4bb7c1a851a75e52bdccb7274d5bd6f835 Mon Sep 17 00:00:00 2001 From: Mark Liversedge Date: Tue, 30 Aug 2011 22:23:22 +0100 Subject: [PATCH] Fix Download Ride Dialog instructions refresh When changing the device type in the Download Ride dilaog the instructions do not change to reflect the device selected. This patch fixes that. Fixes #434. --- src/DownloadRideDialog.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/DownloadRideDialog.cpp b/src/DownloadRideDialog.cpp index fc920e92c..8dea39cde 100644 --- a/src/DownloadRideDialog.cpp +++ b/src/DownloadRideDialog.cpp @@ -57,6 +57,7 @@ DownloadRideDialog::DownloadRideDialog(MainWindow *mainWindow, connect(eraseRideButton, SIGNAL(clicked()), this, SLOT(eraseClicked())); connect(rescanButton, SIGNAL(clicked()), this, SLOT(scanCommPorts())); connect(cancelButton, SIGNAL(clicked()), this, SLOT(cancelClicked())); + connect(deviceCombo, SIGNAL(currentIndexChanged(int)), this, SLOT(setReadyInstruct())); QHBoxLayout *buttonLayout = new QHBoxLayout; buttonLayout->addWidget(downloadButton);