editCopy in connection manager

Allows to edit an existing connection as a new one.
This commit is contained in:
eelke 2021-03-31 16:03:34 +02:00
parent f21a59e030
commit a3ba4d7c98
5 changed files with 37 additions and 9 deletions

View file

@ -102,3 +102,9 @@ void ConnectionManagerWindow::on_actionRemove_group_triggered()
auto ci = ui->treeView->selectionModel()->currentIndex();
m_connectionController->removeGroup(ci);
}
void ConnectionManagerWindow::on_actionConfigureCopy_triggered()
{
auto ci = ui->treeView->selectionModel()->currentIndex();
m_connectionController->editCopy(ci);
}