From: Brandon King Date: Wed, 21 Feb 2007 23:38:03 +0000 (+0000) Subject: WhatsThis update 2 X-Git-Url: http://woldlab.caltech.edu/gitweb/?p=mussa.git;a=commitdiff_plain;h=13809676ff6640fbed77a98b4c7e2dee8ca1e50b WhatsThis update 2 * Removing '*' since the bug seems to be Linux specific * Just having a space at the end fixes the linux whatsthis. --- diff --git a/qui/seqbrowser/SequenceDescription.cpp b/qui/seqbrowser/SequenceDescription.cpp index d116504..ffef805 100644 --- a/qui/seqbrowser/SequenceDescription.cpp +++ b/qui/seqbrowser/SequenceDescription.cpp @@ -34,13 +34,12 @@ void SequenceDescription::setupWidgets() setLineWidth(1); // What's this feature descriptions - // FIXME: The '*' is added because for some reason + // FIXME: The extra space is added because for some reason // Qt's whatsthis feature is chopping off the last word - // If the '*' eventually shows up in a whatsthis pop-up - // then the '*' should be removed. - name_label->setWhatsThis("Name of sequence *"); - position_label->setWhatsThis("Edge of viewport base pair position *"); - length_label->setWhatsThis("Total length of sequence *"); + // under linux. + name_label->setWhatsThis("Name of sequence "); + position_label->setWhatsThis("Edge of viewport base pair position "); + length_label->setWhatsThis("Total length of sequence "); layout->addWidget(name_label); layout->addWidget(position_label);