Skip to content

Commit

Permalink
Fix UI freeze when checking latest gephi version caused by bad proxy …
Browse files Browse the repository at this point in the history
…configuration
  • Loading branch information
eduramiba committed Apr 13, 2012
1 parent 07d691d commit 270335c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DesktopBranding/manifest.mf
Expand Up @@ -4,5 +4,5 @@ OpenIDE-Module: org.gephi.branding.desktop
OpenIDE-Module-Install: org/gephi/branding/desktop/Installer.class
OpenIDE-Module-Layer: org/gephi/branding/desktop/layer.xml
OpenIDE-Module-Localizing-Bundle: org/gephi/branding/desktop/Bundle.properties
OpenIDE-Module-Specification-Version: 0.8.0.9
OpenIDE-Module-Specification-Version: 0.8.1.0

Expand Up @@ -100,7 +100,13 @@ public void restored() {
WindowManager.getDefault().invokeWhenUIReady(new Runnable() {

public void run() {
checkForNewMajorRelease();
new Thread(){

@Override
public void run() {
checkForNewMajorRelease();
}
}.start();
}
});
}
Expand Down

0 comments on commit 270335c

Please sign in to comment.