mirror of
https://github.com/MultiMC/MultiMC5.git
synced 2024-12-26 18:14:22 +00:00
GH-2452 Ask before deleting group
This commit is contained in:
parent
51a6883737
commit
3d630c7856
@ -1478,7 +1478,12 @@ void MainWindow::deleteGroup()
|
|||||||
QString groupName = map["group"].toString();
|
QString groupName = map["group"].toString();
|
||||||
if(!groupName.isEmpty())
|
if(!groupName.isEmpty())
|
||||||
{
|
{
|
||||||
MMC->instances()->deleteGroup(groupName);
|
auto reply = QMessageBox::question(this, tr("Delete group"), tr("Are you sure you want to delete the group %1")
|
||||||
|
.arg(groupName), QMessageBox::Yes | QMessageBox::No);
|
||||||
|
if(reply == QMessageBox::Yes)
|
||||||
|
{
|
||||||
|
MMC->instances()->deleteGroup(groupName);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user