Don't show the planner widget when adding a dive
This looks like it might work, but since we keep recreating the dive, the info entered in the info pane is actually lost. But it's a step in the right direction. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
56535e4b3b
commit
64b014aefb
@ -4,6 +4,7 @@
|
||||
#include "modeldelegates.h"
|
||||
#include "ui_diveplanner.h"
|
||||
#include "mainwindow.h"
|
||||
#include "maintab.h"
|
||||
#include "tableview.h"
|
||||
#include "graphicsview-common.h"
|
||||
|
||||
@ -1149,6 +1150,7 @@ void DivePlannerPointsModel::createTemporaryPlan()
|
||||
tempDive = NULL;
|
||||
char *errorString = NULL;
|
||||
plan(&diveplan, &cache, &tempDive, isPlanner(), &errorString);
|
||||
mainWindow()->information()->updateDiveInfo(get_divenr(tempDive));
|
||||
#if DEBUG_PLAN
|
||||
dump_plan(&diveplan);
|
||||
#endif
|
||||
|
||||
@ -258,7 +258,11 @@ void MainWindow::on_actionAddDive_triggered()
|
||||
disableDcShortcuts();
|
||||
DivePlannerPointsModel::instance()->setPlanMode(false);
|
||||
ui->stackedWidget->setCurrentIndex(1);
|
||||
ui->infoPane->setCurrentIndex(1);
|
||||
ui->infoPane->setCurrentIndex(0);
|
||||
ui->InfoWidget->clearStats();
|
||||
ui->InfoWidget->clearInfo();
|
||||
ui->InfoWidget->clearEquipment();
|
||||
ui->InfoWidget->updateDiveInfo(-1);
|
||||
}
|
||||
|
||||
void MainWindow::on_actionRenumber_triggered()
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user