summaryrefslogtreecommitdiffstats
path: root/gui/ModEditDialogCommon.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gui/ModEditDialogCommon.cpp')
-rw-r--r--gui/ModEditDialogCommon.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/gui/ModEditDialogCommon.cpp b/gui/ModEditDialogCommon.cpp
index 692ac0c4..873cd8ea 100644
--- a/gui/ModEditDialogCommon.cpp
+++ b/gui/ModEditDialogCommon.cpp
@@ -1,4 +1,5 @@
#include "ModEditDialogCommon.h"
+#include "CustomMessageBox.h"
#include <QDesktopServices>
#include <QMessageBox>
#include <QString>
@@ -33,8 +34,8 @@ void showWebsiteForMod(QWidget *parentDlg, Mod &m)
}
else
{
- QMessageBox::warning(
- parentDlg, parentDlg->tr("How sad!"),
- parentDlg->tr("The mod author didn't provide a website link for this mod."));
+ CustomMessageBox::selectable(parentDlg, parentDlg->tr("How sad!"),
+ parentDlg->tr("The mod author didn't provide a website link for this mod."),
+ QMessageBox::Warning);
}
}