aboutsummaryrefslogtreecommitdiff
path: root/gui/MCModInfoFrame.cpp
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2013-10-30 00:56:43 +0100
committerPetr Mrázek <peterix@gmail.com>2013-10-30 00:56:43 +0100
commitf941119fbd89b5677a2895eee3232fa76389b4b5 (patch)
tree7d761d3c8189c06dda83e3fa88f281a24ab46e4b /gui/MCModInfoFrame.cpp
parentc46292c9b1c153f2d17554690e90db1c8efe4d23 (diff)
parent44823324f9f489adf957a459bac5dd4d0693e85e (diff)
downloadPrismLauncher-f941119fbd89b5677a2895eee3232fa76389b4b5.tar.gz
PrismLauncher-f941119fbd89b5677a2895eee3232fa76389b4b5.tar.bz2
PrismLauncher-f941119fbd89b5677a2895eee3232fa76389b4b5.zip
Merge branch 'develop'
Diffstat (limited to 'gui/MCModInfoFrame.cpp')
-rw-r--r--gui/MCModInfoFrame.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/gui/MCModInfoFrame.cpp b/gui/MCModInfoFrame.cpp
index b3f4ca5b..55ef13f1 100644
--- a/gui/MCModInfoFrame.cpp
+++ b/gui/MCModInfoFrame.cpp
@@ -15,6 +15,7 @@
#include "MCModInfoFrame.h"
#include "ui_MCModInfoFrame.h"
+#include "CustomMessageBox.h"
#include <QMessageBox>
#include <QtGui>
void MCModInfoFrame::updateWithMod(Mod &m)
@@ -104,7 +105,5 @@ void MCModInfoFrame::setModDescription(QString text)
}
void MCModInfoFrame::modDescEllipsisHandler(const QString &link)
{
- QMessageBox msgbox;
- msgbox.setText(desc);
- msgbox.exec();
+ CustomMessageBox::selectable(this, tr(""), desc)->show();
}