summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/changelog.asciidoc3
-rw-r--r--qutebrowser/browser/webengine/webenginesettings.py1
2 files changed, 4 insertions, 0 deletions
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'):