Skip to content

Commit

Permalink
Merge pull request #73 from Einsteino/master
Browse files Browse the repository at this point in the history
Set system proxy by default, if it exists. Solves #60.
  • Loading branch information
dj3500 committed Jan 25, 2015
2 parents 9293206 + bfbc60e commit 6f194f1
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Hightail/src/org/hightail/ui/MainJFrame.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,13 @@ public MainJFrame() {

makeShortcuts();

//Set the system proxy if there is one
try {
System.setProperty("java.net.useSystemProxies", "true");
}
finally {
}

// We load the configuration
boolean ok = Config.load();
if (!ok) { // couldn't load
Expand Down

0 comments on commit 6f194f1

Please sign in to comment.