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:
e7b8360
)
pasted file contents should never be added to the recent URL or recent file list.
author
jprocter
<Jim Procter>
Tue, 3 Nov 2009 15:27:19 +0000
(15:27 +0000)
committer
jprocter
<Jim Procter>
Tue, 3 Nov 2009 15:27:19 +0000
(15:27 +0000)
src/jalview/io/FileLoader.java
patch
|
blob
|
history
diff --git
a/src/jalview/io/FileLoader.java
b/src/jalview/io/FileLoader.java
index
bc76e42
..
06c31a4
100755
(executable)
--- a/
src/jalview/io/FileLoader.java
+++ b/
src/jalview/io/FileLoader.java
@@
-173,7
+173,11
@@
public class FileLoader implements Runnable
public void updateRecentlyOpened()
{
Vector recent = new Vector();
-
+ if (protocol.equals(FormatAdapter.PASTE))
+ {
+ // do nothing if the file was pasted in as text... there is no filename to refer to it as.
+ return;
+ }
String type = protocol.equals(FormatAdapter.FILE) ? "RECENT_FILE"
: "RECENT_URL";