mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
Fixed running the Download dialog multiple times
We never reset the 'downloading' variable. Solved-by: Thiago Macieira <thiago@macieira.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
56eaea6993
commit
2a4d981d09
2 changed files with 7 additions and 0 deletions
|
@ -68,6 +68,11 @@ void DownloadFromDCWidget::runDialog()
|
|||
show();
|
||||
}
|
||||
|
||||
void DownloadFromDCWidget::stoppedDownloading()
|
||||
{
|
||||
downloading = false;
|
||||
}
|
||||
|
||||
void DownloadFromDCWidget::on_vendor_currentIndexChanged(const QString& vendor)
|
||||
{
|
||||
QAbstractItemModel *currentModel = ui->product->model();
|
||||
|
@ -179,6 +184,7 @@ void DownloadThread::run()
|
|||
DownloadFromDCWidget *dfdcw = DownloadFromDCWidget::instance();
|
||||
do_libdivecomputer_import(data);
|
||||
process_dives(TRUE, dfdcw->preferDownloaded());
|
||||
dfdcw->stoppedDownloading();
|
||||
}
|
||||
|
||||
InterfaceThread::InterfaceThread(QObject* parent, device_data_t* data): QThread(parent), data(data)
|
||||
|
|
|
@ -43,6 +43,7 @@ public slots:
|
|||
void on_ok_clicked();
|
||||
void on_cancel_clicked();
|
||||
void runDialog();
|
||||
void stoppedDownloading();
|
||||
void on_vendor_currentIndexChanged(const QString& vendor);
|
||||
private:
|
||||
Ui::DownloadFromDiveComputer *ui;
|
||||
|
|
Loading…
Reference in a new issue