mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Make nextDC and previousDC work and assign shortcuts
Cursor right and left now work again to switch between divecomputers. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
56c4cced53
commit
e69dbebf21
3 changed files with 17 additions and 4 deletions
|
@ -45,6 +45,11 @@ MainWindow::MainWindow() : ui(new Ui::MainWindow()),
|
|||
ui->ListWidget->setCurrentIndex(firstDiveOrTrip);
|
||||
}
|
||||
|
||||
void MainWindow::redrawProfile()
|
||||
{
|
||||
ui->ProfileWidget->plot(get_dive(selected_dive));
|
||||
}
|
||||
|
||||
void MainWindow::on_actionNew_triggered()
|
||||
{
|
||||
qDebug("actionNew");
|
||||
|
@ -96,7 +101,7 @@ void MainWindow::dive_selection_changed(const QItemSelection& newSelection, cons
|
|||
continue;
|
||||
select_dive(get_divenr(d));
|
||||
}
|
||||
ui->ProfileWidget->plot(get_dive(selected_dive));
|
||||
redrawProfile();
|
||||
ui->InfoWidget->updateDiveInfo(selected_dive);
|
||||
}
|
||||
|
||||
|
@ -239,12 +244,14 @@ void MainWindow::on_actionViewAll_triggered()
|
|||
|
||||
void MainWindow::on_actionPreviousDC_triggered()
|
||||
{
|
||||
qDebug("actionPreviousDC");
|
||||
dc_number--;
|
||||
redrawProfile();
|
||||
}
|
||||
|
||||
void MainWindow::on_actionNextDC_triggered()
|
||||
{
|
||||
qDebug("actionNextDC");
|
||||
dc_number++;
|
||||
redrawProfile();
|
||||
}
|
||||
|
||||
void MainWindow::on_actionSelectEvents_triggered()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue