summaryrefslogtreecommitdiff
path: root/rbutil/rbutilqt
diff options
context:
space:
mode:
Diffstat (limited to 'rbutil/rbutilqt')
-rw-r--r--rbutil/rbutilqt/rbutilqt.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/rbutil/rbutilqt/rbutilqt.cpp b/rbutil/rbutilqt/rbutilqt.cpp
index c3f088f0a6..041fafdd60 100644
--- a/rbutil/rbutilqt/rbutilqt.cpp
+++ b/rbutil/rbutilqt/rbutilqt.cpp
@@ -241,8 +241,8 @@ void RbUtilQt::configDialog()
241 Config *cw = new Config(this); 241 Config *cw = new Config(this);
242 cw->setSettings(settings); 242 cw->setSettings(settings);
243 cw->show(); 243 cw->show();
244 connect(cw, SIGNAL(settingsUpdated()), this, SLOT(downloadInfo()));
245 connect(cw, SIGNAL(settingsUpdated()), this, SLOT(updateSettings())); 244 connect(cw, SIGNAL(settingsUpdated()), this, SLOT(updateSettings()));
245 connect(cw, SIGNAL(settingsUpdated()), this, SLOT(downloadInfo()));
246} 246}
247 247
248 248
@@ -257,6 +257,9 @@ void RbUtilQt::updateSettings()
257 else if(settings->proxyType() == "manual") { 257 else if(settings->proxyType() == "manual") {
258 HttpGet::setGlobalProxy(settings->proxy()); 258 HttpGet::setGlobalProxy(settings->proxy());
259 } 259 }
260 else {
261 HttpGet::setGlobalProxy(QUrl(""));
262 }
260 HttpGet::setGlobalCache(settings->cachePath()); 263 HttpGet::setGlobalCache(settings->cachePath());
261} 264}
262 265