summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElise <robotbrainify@gmail.com>2019-02-26 16:56:08 -0500
committerElise <robotbrainify@gmail.com>2019-02-26 16:56:08 -0500
commita5e531d4f1e3a93befcbb2ae49f3474e32caffb7 (patch)
treee9a153604ba56705397fd74191f605f533996c51
parentae956d8fd6007304cbf6174ead70e61a61d502b0 (diff)
downloadMultiMC-a5e531d4f1e3a93befcbb2ae49f3474e32caffb7.tar
MultiMC-a5e531d4f1e3a93befcbb2ae49f3474e32caffb7.tar.gz
MultiMC-a5e531d4f1e3a93befcbb2ae49f3474e32caffb7.tar.lz
MultiMC-a5e531d4f1e3a93befcbb2ae49f3474e32caffb7.tar.xz
MultiMC-a5e531d4f1e3a93befcbb2ae49f3474e32caffb7.zip
GH-2487 Make NO the default button
-rw-r--r--application/MainWindow.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/application/MainWindow.cpp b/application/MainWindow.cpp
index 235d458c..3c957995 100644
--- a/application/MainWindow.cpp
+++ b/application/MainWindow.cpp
@@ -1634,7 +1634,8 @@ void MainWindow::on_actionDeleteInstance_triggered()
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
+ QMessageBox::Yes | QMessageBox::No,
+ QMessageBox::No
)->exec();
if (response == QMessageBox::Yes)
{