WhatsThis update 2
authorBrandon King <kingb@caltech.edu>
Wed, 21 Feb 2007 23:38:03 +0000 (23:38 +0000)
committerBrandon King <kingb@caltech.edu>
Wed, 21 Feb 2007 23:38:03 +0000 (23:38 +0000)
 * Removing '*' since the bug seems to be Linux specific
 * Just having a space at the end fixes the linux whatsthis.

qui/seqbrowser/SequenceDescription.cpp

index d1165047793badac57ed778b77db476858b9756d..ffef8053f792eb90b2bab7ca7d76596421f703d6 100644 (file)
@@ -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);