git://source.jalview.org
/
jalview.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7897c6c
)
ensure all URL links on the features under the residue get an entry in the 'links...
Release_2_4_0
author
jprocter
<Jim Procter>
Thu, 4 Sep 2008 12:59:58 +0000
(12:59 +0000)
committer
jprocter
<Jim Procter>
Thu, 4 Sep 2008 12:59:58 +0000
(12:59 +0000)
src/jalview/appletgui/SeqPanel.java
patch
|
blob
|
history
diff --git
a/src/jalview/appletgui/SeqPanel.java
b/src/jalview/appletgui/SeqPanel.java
index
78fe40e
..
bf392e9
100755
(executable)
--- a/
src/jalview/appletgui/SeqPanel.java
+++ b/
src/jalview/appletgui/SeqPanel.java
@@
-1355,10
+1355,13
@@
public class SeqPanel extends Panel implements MouseMotionListener,
{
if (allFeatures[i].links != null)
{
- links = new Vector();
+ if (links==null)
+ {
+ links = new Vector();
+ }
for (int j = 0; j < allFeatures[i].links.size(); j++)
{
- links.addElement(allFeatures[i].links.elementAt(j));
+ links.addElement(allFeatures[i].links.elementAt(j));
}
}
}