Skip to content
This repository has been archived by the owner on May 10, 2018. It is now read-only.

Commit

Permalink
Preferences: Fix default proxy type
Browse files Browse the repository at this point in the history
Closes #2527
  • Loading branch information
nowrep committed Dec 19, 2017
1 parent ad19910 commit 53fc3ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/preferences/preferences.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ Preferences::Preferences(BrowserWindow* window)

// Proxy Configuration
settings.beginGroup("Web-Proxy");
int proxyType = settings.value("ProxyType", 1).toInt();
int proxyType = settings.value("ProxyType", 2).toInt();
if (proxyType == 0) {
ui->noProxy->setChecked(true);
} else if (proxyType == 2) {
Expand Down

0 comments on commit 53fc3ba

Please sign in to comment.