JAL-1723 ellipsis in tooltip if xrefs to more than 40 db sources
authorgmungoc <g.m.carstairs@dundee.ac.uk>
Mon, 31 Oct 2016 11:45:44 +0000 (11:45 +0000)
committergmungoc <g.m.carstairs@dundee.ac.uk>
Mon, 31 Oct 2016 11:45:44 +0000 (11:45 +0000)
resources/lang/Messages.properties
resources/lang/Messages_es.properties
src/jalview/api/FeatureRenderer.java
src/jalview/gui/SeqPanel.java

index 864e34a..1c52b63 100644 (file)
@@ -1268,3 +1268,4 @@ status.exporting_alignment_as_x_file = Exporting alignment as {0} file
 label.column = Column
 label.cant_map_cds = Unable to map CDS to protein\nCDS missing or incomplete
 label.operation_failed = Operation failed
+label.output_seq_details = Output Sequence Details to list all database references
index 754d94d..8009ae9 100644 (file)
@@ -1269,3 +1269,4 @@ status.exporting_alignment_as_x_file = Exportando alineamiento como fichero tipo
 label.column = Columna
 label.cant_map_cds = No se pudo mapear CDS a proteĆ­na\nDatos CDS faltantes o incompletos
 label.operation_failed = OperaciĆ³n fallada
+label.output_seq_details = Seleccionar Detalles de la secuencia para ver todas
index dbc9880..f54231e 100644 (file)
@@ -132,7 +132,8 @@ public interface FeatureRenderer
   void setGroupVisibility(String group, boolean visible);
 
   /**
-   * locate features at a particular position on the given sequence
+   * Returns features at the specified position on the given sequence.
+   * Non-positional features are not included.
    * 
    * @param sequence
    * @param res
index 885aab2..73ed744 100644 (file)
@@ -785,7 +785,7 @@ public class SeqPanel extends JPanel implements MouseListener,
       seqARep.appendFeatures(tooltipText, rpos, features,
               this.ap.getSeqPanel().seqCanvas.fr.getMinMax());
     }
-    if (tooltipText.length() == 6) // <html></html>
+    if (tooltipText.length() == 6) // <html>
     {
       setToolTipText(null);
       lastTooltip = null;