diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-01-08 09:39:47 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-01-08 09:39:47 -0800 |
commit | 9d38ceb95d16263a6f2bfeb5ceb450726d617e2d (patch) | |
tree | 9a7b737cbb334b4dfe60072d02bef56bb6ba0f84 /qt-ui/downloadfromdivecomputer.cpp | |
parent | a20040a561e3108abab3da9f4fac9be662b8ca24 (diff) | |
download | subsurface-9d38ceb95d16263a6f2bfeb5ceb450726d617e2d.tar.gz |
Dive d/l selection UI: disable OK until things are downloaded
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/downloadfromdivecomputer.cpp')
-rw-r--r-- | qt-ui/downloadfromdivecomputer.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qt-ui/downloadfromdivecomputer.cpp b/qt-ui/downloadfromdivecomputer.cpp index 131a4bbdf..bb39765ab 100644 --- a/qt-ui/downloadfromdivecomputer.cpp +++ b/qt-ui/downloadfromdivecomputer.cpp @@ -86,6 +86,7 @@ DownloadFromDCWidget::DownloadFromDCWidget(QWidget *parent, Qt::WindowFlags f) : connect(close, SIGNAL(activated()), this, SLOT(close())); QShortcut *quit = new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_Q), this); connect(quit, SIGNAL(activated()), parent, SLOT(close())); + ui.ok->setEnabled(false); } void DownloadFromDCWidget::updateProgressBar() |