JAL-1834 capped the tool-tip text at 500. once that is exceeded an ellipsis is added
[jalview.git] / src / jalview / jbgui / GStructureChooser.java
index caba85f..2c51b3d 100644 (file)
@@ -165,8 +165,11 @@ public abstract class GStructureChooser extends JPanel implements
       {
         e.printStackTrace();
       }
-      toolTipText = (toolTipText == null ? null : JvSwingUtils.wrapTooltip(
-              true, toolTipText));
+      toolTipText = (toolTipText == null ? null
+              : (toolTipText.length() > 500 ? JvSwingUtils.wrapTooltip(
+                      true, "\"" + toolTipText.subSequence(0, 500)
+                              + "...\"") : JvSwingUtils.wrapTooltip(true,
+                      toolTipText)));
       return toolTipText;
     }
   };