JAL-3210 Barebones gradle/buildship/eclipse. See README
[jalview.git] / src / jalview / gui / ComboBoxTooltipRenderer.java
index a601ed6..684f965 100644 (file)
@@ -48,8 +48,7 @@ public class ComboBoxTooltipRenderer extends DefaultListCellRenderer
     JComponent comp = (JComponent) super.getListCellRendererComponent(list,
             value, index, isSelected, cellHasFocus);
 
-    // BH 2019.07.07 restricting this to mouse moves over the selected target
-    if (isSelected && -1 < index && null != value && null != tooltips)
+    if (-1 < index && null != value && null != tooltips)
     {
       list.setToolTipText(tooltips.get(index));
     }