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:
a0ea87b
)
JAL-3009 news reader thread should be in background. TODO: patch newsreader so it...
bugs/JAL-3009_blockingNetworkThreads
author
Jim Procter
<jprocter@issues.jalview.org>
Wed, 30 May 2018 10:50:19 +0000
(11:50 +0100)
committer
Jim Procter
<jprocter@issues.jalview.org>
Tue, 5 Jun 2018 16:24:21 +0000
(17:24 +0100)
src/jalview/gui/Desktop.java
patch
|
blob
|
history
diff --git
a/src/jalview/gui/Desktop.java
b/src/jalview/gui/Desktop.java
index
8f04576
..
259e693
100644
(file)
--- a/
src/jalview/gui/Desktop.java
+++ b/
src/jalview/gui/Desktop.java
@@
-515,7
+515,7
@@
public class Desktop extends jalview.jbgui.GDesktop
{
final Desktop me = this;
// Thread off the news reader, in case there are connection problems.
- addDialogThread(new Runnable()
+ new Thread(new Runnable()
{
@Override
public void run()
@@
-526,7
+526,7
@@
public class Desktop extends jalview.jbgui.GDesktop
showNews.setVisible(true);
Cache.log.debug("Completed news thread.");
}
- });
+ }).start();
}
public void getIdentifiersOrgData()