diff options
-rw-r--r-- | scudcloud-1.0/lib/wrapper.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/scudcloud-1.0/lib/wrapper.py b/scudcloud-1.0/lib/wrapper.py index e91d8e7..318ceb5 100644 --- a/scudcloud-1.0/lib/wrapper.py +++ b/scudcloud-1.0/lib/wrapper.py @@ -25,15 +25,6 @@ class Wrapper(QWebView): self.connect(self, SIGNAL("loadFinished(bool)"), self.loadFinished) self.connect(self, SIGNAL("linkClicked(const QUrl&)"), self.linkClicked) self.addActions() - self.setupTimer() - - # Starting a timer that will check by server side reloads (which drops ScudCloud JS) - def setupTimer(self): - timer = QTimer(self) - timer.timeout.connect(self.loadFinished) - # Hope each 10 minutes will not be produce high CPU usage - timer.setInterval(600000) - timer.start() def configure_proxy(self): proxy = urlparse(os.environ.get('http_proxy') or os.environ.get('HTTP_PROXY')) |