summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-03-26 16:17:17 +0100
committerFlorian Bruhin <me@the-compiler.org>2021-03-27 15:30:02 +0100
commitdb94e7b8a2028c0003074eda0d5f588d7f098528 (patch)
tree3e16c345da77328aea164bea35d18796fda35d17 /doc
parent330e51185fdbd0b0847fa8d7764f9234c6f60878 (diff)
downloadqutebrowser-db94e7b8a2028c0003074eda0d5f588d7f098528.tar.gz
qutebrowser-db94e7b8a2028c0003074eda0d5f588d7f098528.zip
notifications: Initialize adapters lazily
Diffstat (limited to 'doc')
-rw-r--r--doc/help/settings.asciidoc5
1 files changed, 2 insertions, 3 deletions
diff --git a/doc/help/settings.asciidoc b/doc/help/settings.asciidoc
index 1b5aa6205..d8d58d9a2 100644
--- a/doc/help/settings.asciidoc
+++ b/doc/help/settings.asciidoc
@@ -2524,8 +2524,6 @@ Default: +pass:[ask]+
What notification presenter to use for web notifications.
Note that with Qt 5.14, certain JavaScript features for notifications will not work with the libnotify notification presenter (the `click` and `close` events, as well as the `tag` option to replace existing notifications).
-This setting requires a restart.
-
On QtWebEngine, this setting requires Qt 5.14 or newer.
On QtWebKit, this setting is unavailable.
@@ -2535,8 +2533,9 @@ Type: <<types,String>>
Valid values:
* +auto+: Use a libnotify-compatible presenter if DBus is available, silently fall back to Qt's presenter otherwise.
- * +qt+: Use Qt's native notification presenter.
+ * +qt+: Use Qt's native notification presenter. Switching from or to this value requires a restart of qutebrowser.
* +libnotify+: Use a libnotify-compatible presenter if DBus is available, show an error (and fall back to Qt's presenter) otherwise.
+ * +systray+: Use a notification presenter based on a systray icon. This is a reimplementation of the `qt` setting value, but with the possibility to switch to it at runtime.
Default: +pass:[auto]+