GH-2089 update wording of the instance delete confirmation dialog

This commit is contained in:
Petr Mrázek 2018-01-04 04:16:31 +01:00
parent 9510a1bbf2
commit ee341b78ba

View File

@ -1597,11 +1597,13 @@ void MainWindow::on_actionDeleteInstance_triggered()
{
return;
}
auto response = CustomMessageBox::selectable(this, tr("CAREFUL!"), tr("About to delete: %1\nThis is permanent and will completely erase "
"all data, even for tracked instances!\nAre you sure?")
.arg(m_selectedInstance->name()),
QMessageBox::Warning, QMessageBox::Yes | QMessageBox::No)
->exec();
auto response = CustomMessageBox::selectable(
this,
tr("CAREFUL!"),
tr("About to delete: %1\nThis is permanent and will completely delete the instance.\n\nAre you sure?").arg(m_selectedInstance->name()),
QMessageBox::Warning,
QMessageBox::Yes | QMessageBox::No
)->exec();
if (response == QMessageBox::Yes)
{
m_selectedInstance->nuke();