From 71948073e9980ae517d38892fbc3fdf6b715a470 Mon Sep 17 00:00:00 2001 From: robotbrainify Date: Sat, 12 Oct 2013 08:45:24 -0400 Subject: tool tip bugfixes --- gui/MCModInfoFrame.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gui/MCModInfoFrame.cpp b/gui/MCModInfoFrame.cpp index 4659afba..a45e30ea 100644 --- a/gui/MCModInfoFrame.cpp +++ b/gui/MCModInfoFrame.cpp @@ -15,7 +15,6 @@ #include "MCModInfoFrame.h" #include "ui_MCModInfoFrame.h" -#include void MCModInfoFrame::updateWithMod(Mod &m) { if(m.type() == m.MOD_FOLDER) @@ -70,6 +69,7 @@ void MCModInfoFrame::setModText(QString text) void MCModInfoFrame::setModDescription(QString text) { + ui->label_ModDescription->setToolTip(""); QString intermediatetext = text.trimmed(); bool prev(false); QChar rem('\n'); @@ -88,12 +88,11 @@ void MCModInfoFrame::setModDescription(QString text) if(finaltext.length() > 297) { labeltext.append(finaltext.left(287) + "..."); - ui->label_ModDescription->setToolTip(text); + ui->label_ModDescription->setToolTip(text.replace('\n', "
")); } else { labeltext.append(finaltext); } -// std::cout << finaltext.length() << std::endl; ui->label_ModDescription->setText(labeltext); } -- cgit v1.2.3