Add dive/emerge map pickers

This commit is contained in:
Marcus Huderle
2018-03-10 11:25:34 -08:00
parent 5301b299e2
commit 6f71c15629
5 changed files with 310 additions and 137 deletions

View File

@@ -790,3 +790,13 @@ void MainWindow::on_pushButton_RemoveConnection_clicked()
{
editor->removeCurrentConnection();
}
void MainWindow::on_comboBox_DiveMap_currentTextChanged(const QString &mapName)
{
editor->updateDiveMap(mapName);
}
void MainWindow::on_comboBox_EmergeMap_currentTextChanged(const QString &mapName)
{
editor->updateEmergeMap(mapName);
}