diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2014-05-27 15:44:47 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-05-27 15:44:47 -0700 |
commit | c88a90f379a297c7053c5479cd5631ec67c3e444 (patch) | |
tree | 3318b4ca2f5ac1e8d1407427f3d8eccca9cdbf2f /qt-ui/diveplanner.cpp | |
parent | eb59b97c2b150a123c855165fc2659004f2206f5 (diff) | |
download | subsurface-c88a90f379a297c7053c5479cd5631ec67c3e444.tar.gz |
Planner: correctly refresh the display
We were making things way too hard (and were doing things that don't need
doing, like clearing the DivePlanPointModel).
Currently we still crash after manually adding a dive or when canceling
a plan.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/diveplanner.cpp')
-rw-r--r-- | qt-ui/diveplanner.cpp | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/qt-ui/diveplanner.cpp b/qt-ui/diveplanner.cpp index 41f265ffa..cf09ebaba 100644 --- a/qt-ui/diveplanner.cpp +++ b/qt-ui/diveplanner.cpp @@ -256,7 +256,6 @@ DivePlannerWidget::DivePlannerWidget(QWidget *parent, Qt::WindowFlags f) : QWidg connect(ui.buttonBox, SIGNAL(rejected()), plannerModel, SLOT(cancelPlan())); connect(plannerModel, SIGNAL(planCreated()), MainWindow::instance(), SLOT(removeFakeDiveForAddAndPlan())); connect(plannerModel, SIGNAL(planCreated()), MainWindow::instance(), SLOT(showProfile())); - connect(plannerModel, SIGNAL(planCreated()), MainWindow::instance(), SLOT(refreshDisplay())); connect(plannerModel, SIGNAL(planCanceled()), MainWindow::instance(), SLOT(removeFakeDiveForAddAndPlan())); connect(plannerModel, SIGNAL(planCanceled()), MainWindow::instance(), SLOT(showProfile())); @@ -666,7 +665,6 @@ void DivePlannerPointsModel::cancelPlan() stagingDive = NULL; } setPlanMode(NOTHING); - MainWindow::instance()->graphics()->setProfileState(); diveplan.dp = NULL; } @@ -866,17 +864,10 @@ void DivePlannerPointsModel::createPlan() // Remove and clean the diveplan, so we don't delete // the dive by mistake. diveplan.dp = NULL; - clear(); - - // we unselected all dives earlier, so as a side effect recreating the dive list will select the new dive - MainWindow::instance()->recreateDiveList(); planCreated(); setPlanMode(NOTHING); free(stagingDive); stagingDive = NULL; - oldRecalc = plannerModel->setRecalc(false); - CylindersModel::instance()->setDive(current_dive); - CylindersModel::instance()->update(); - plannerModel->setRecalc(oldRecalc); - MainWindow::instance()->graphics()->setProfileState(); + // we unselected all dives earlier, so as a side effect recreating the dive list will select the new dive + MainWindow::instance()->refreshDisplay(); } |