diff options
author | Rael <rael.gc@gmail.com> | 2015-11-19 09:42:25 -0200 |
---|---|---|
committer | Rael <rael.gc@gmail.com> | 2015-11-19 09:42:25 -0200 |
commit | 57a20803d5b63af55755f89d46eaffdadaea06fc (patch) | |
tree | 0b75d76c2ef8846ad7e0fa53fde748f029a87c4d | |
parent | 992e26f571f8c91f46d29583ff813aa7d9ed8d71 (diff) | |
download | scudcloud-57a20803d5b63af55755f89d46eaffdadaea06fc.zip scudcloud-57a20803d5b63af55755f89d46eaffdadaea06fc.tar.gz scudcloud-57a20803d5b63af55755f89d46eaffdadaea06fc.tar.bz2 |
Fixing stuck in loading screen (#294)
-rwxr-xr-x | scudcloud-1.0/lib/scudcloud.py | 2 |
1 files changed, 2 insertions, 0 deletions
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) |