From 57a20803d5b63af55755f89d46eaffdadaea06fc Mon Sep 17 00:00:00 2001 From: Rael Date: Thu, 19 Nov 2015 09:42:25 -0200 Subject: Fixing stuck in loading screen (#294) --- scudcloud-1.0/lib/scudcloud.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scudcloud-1.0/lib/scudcloud.py b/scudcloud-1.0/lib/scudcloud.py index abcc8ca..d53e04f 100755 --- a/scudcloud-1.0/lib/scudcloud.py +++ b/scudcloud-1.0/lib/scudcloud.py @@ -80,6 +80,8 @@ class ScudCloud(QtGui.QMainWindow): QWebSettings.globalSettings().setAttribute(QWebSettings.JavaEnabled, False) # We don't need History QWebSettings.globalSettings().setAttribute(QWebSettings.PrivateBrowsingEnabled, True) + # Enabling Local Storage (now required by Slack) + QWebSettings.globalSettings().setAttribute(QWebSettings.LocalStorageEnabled, True) # Enabling Cache self.diskCache = QNetworkDiskCache(self) self.diskCache.setCacheDirectory(self.settings_path) -- cgit v1.1