diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-03-16 10:53:50 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-03-16 10:53:50 -0700 |
commit | f724b7ebf98904a436ab1a9a616ee720b19a54c2 (patch) | |
tree | c78253072e438c1733f9b119f9eae4bf512d3f39 /qt-ui | |
parent | 35d6cf8000708c16fac99ae636dafacc6c79a23f (diff) | |
download | subsurface-f724b7ebf98904a436ab1a9a616ee720b19a54c2.tar.gz |
Don't overwrite the displayed dive in the middle of editing
Coming back from a dive site edit we must not call refreshDisplay() or
otherwise the edits on the displayed_dive are overwritten.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui')
-rw-r--r-- | qt-ui/mainwindow.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/qt-ui/mainwindow.cpp b/qt-ui/mainwindow.cpp index 9921ac143..b9e0f9877 100644 --- a/qt-ui/mainwindow.cpp +++ b/qt-ui/mainwindow.cpp @@ -130,7 +130,6 @@ MainWindow::MainWindow() : QMainWindow(), connect(plannerDetails->printPlan(), SIGNAL(pressed()), divePlannerWidget(), SLOT(printDecoPlan())); connect(mainTab, SIGNAL(requestDiveSiteEdit(uint32_t)), this, SLOT(enableDiveSiteEdit(uint32_t))); connect(locationInformation, SIGNAL(informationManagementEnded()), this, SLOT(setDefaultState())); - connect(locationInformation, SIGNAL(informationManagementEnded()), this, SLOT(refreshDisplay())); connect(locationInformation, SIGNAL(informationManagementEnded()), information(), SLOT(showLocation())); #ifdef NO_PRINTING |