JAL-3446 problem with Select-Find tooltip
[jalview.git] / src / jalview / gui / JvSwingUtils.java
index d6090e2..e399236 100644 (file)
@@ -20,8 +20,6 @@
  */
 package jalview.gui;
 
-import jalview.util.MessageManager;
-
 import java.awt.BorderLayout;
 import java.awt.Color;
 import java.awt.Component;
@@ -48,6 +46,8 @@ import javax.swing.SwingConstants;
 import javax.swing.border.Border;
 import javax.swing.border.TitledBorder;
 
+import jalview.util.MessageManager;
+
 /**
  * useful functions for building Swing GUIs
  * 
@@ -75,15 +75,16 @@ public final class JvSwingUtils
 
     if (ttext.contains("<br>"))
     {
-      String[] htmllines = ttext.split("<br>");
-      for (String line : htmllines)
-      {
-        maxLengthExceeded = line.length() > 60;
-        if (maxLengthExceeded)
-        {
-          break;
-        }
-      }
+      maxLengthExceeded = false;
+//      String[] htmllines = ttext.split("<br>");
+//      for (String line : htmllines)
+//      {
+//        maxLengthExceeded = line.length() > 60;
+//        if (maxLengthExceeded)
+//        {
+//          break;
+//        }
+//      }
     }
     else
     {
@@ -96,9 +97,14 @@ public final class JvSwingUtils
     }
 
     return (enclose ? "<html>" : "")
-            + "<style> p.ttip {width: 350; text-align: justify; word-wrap: break-word;}</style><p class=\"ttip\">"
-            + ttext + "</p>" + ((enclose ? "</html>" : ""));
-
+     // BH 2018
+            + "<style> div.ttip {width:350px;white-space:pre-wrap;margin:2px;overflow-wrap:break-word;}</style><div class=\"ttip\">"
+//            + "<style> p.ttip {width:350px;margin:-14px 0px -14px 0px;padding:2px;overflow-wrap:break-word;}"
+//            + "</style><p class=\"ttip\">"
+            + ttext
+            + " </div>"
+//            + "</p>"
+            + ((enclose ? "</html>" : ""));
   }
 
   public static JButton makeButton(String label, String tooltip,