From 73e08124d858b2da9041d944b256947b77b2cfcd Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Fri, 29 May 2020 15:31:18 +0200 Subject: Add site-specific quirk for Google Drive Fixes #5472 See #4805, #4810 --- doc/changelog.asciidoc | 3 +++ qutebrowser/browser/webengine/webenginesettings.py | 1 + 2 files changed, 4 insertions(+) diff --git a/doc/changelog.asciidoc b/doc/changelog.asciidoc index a6aead789..b982c8763 100644 --- a/doc/changelog.asciidoc +++ b/doc/changelog.asciidoc @@ -72,6 +72,9 @@ Fixed - The workaround for session loading with Qt 5.15 now handles `sessions.lazy_restore` so that the saved page is loaded instead of the "stub" page with no possibility to get to the web page. +- A site specific quirk to allow typing accented characters on Google + Docs was active for docs.google.com, but not drive.google.com. It is + now applied for both subdomains. v1.11.1 (2020-05-07) -------------------- diff --git a/qutebrowser/browser/webengine/webenginesettings.py b/qutebrowser/browser/webengine/webenginesettings.py index d5d654dbf..c76a1c90a 100644 --- a/qutebrowser/browser/webengine/webenginesettings.py +++ b/qutebrowser/browser/webengine/webenginesettings.py @@ -403,6 +403,7 @@ def _init_site_specific_quirks(): 'https://accounts.google.com/*': firefox_ua, 'https://*.slack.com/*': new_chrome_ua, 'https://docs.google.com/*': firefox_ua, + 'https://drive.google.com/*': firefox_ua, } if not qtutils.version_check('5.9'): -- cgit v1.2.3-54-g00ecf