Update docs

This commit is contained in:
Florian Bruhin 2018-09-28 19:35:11 +02:00
parent 54c39484d3
commit 2f121d77df
3 changed files with 16 additions and 6 deletions

View File

@ -79,6 +79,9 @@ Changed
- The `qute://settings` page is now properly sorted on Python 3.5. - The `qute://settings` page is now properly sorted on Python 3.5.
- `:zoom`, `:zoom-in` and `:zoom-out` now have a `--quiet` switch which causes - `:zoom`, `:zoom-in` and `:zoom-out` now have a `--quiet` switch which causes
them to not display a message. them to not display a message.
- The `scrolling.bar` setting now takes three values instead of being a
boolean: `always`, `never`, and `when-searching` (which only displays it
while a search is active).
Fixed Fixed
~~~~~ ~~~~~

View File

@ -232,7 +232,7 @@
|<<qt.highdpi,qt.highdpi>>|Turn on Qt HighDPI scaling. |<<qt.highdpi,qt.highdpi>>|Turn on Qt HighDPI scaling.
|<<qt.low_end_device_mode,qt.low_end_device_mode>>|When to use Chromium's low-end device mode. |<<qt.low_end_device_mode,qt.low_end_device_mode>>|When to use Chromium's low-end device mode.
|<<qt.process_model,qt.process_model>>|Which Chromium process model to use. |<<qt.process_model,qt.process_model>>|Which Chromium process model to use.
|<<scrolling.bar,scrolling.bar>>|Show a scrollbar. |<<scrolling.bar,scrolling.bar>>|When to show the scrollbar.
|<<scrolling.smooth,scrolling.smooth>>|Enable smooth scrolling for web pages. |<<scrolling.smooth,scrolling.smooth>>|Enable smooth scrolling for web pages.
|<<search.ignore_case,search.ignore_case>>|When to find text on a page case-insensitively. |<<search.ignore_case,search.ignore_case>>|When to find text on a page case-insensitively.
|<<search.incremental,search.incremental>>|Find text on a page incrementally, renewing the search for each typed character. |<<search.incremental,search.incremental>>|Find text on a page incrementally, renewing the search for each typed character.
@ -1920,7 +1920,7 @@ On QtWebKit, this setting is unavailable.
[[content.mute]] [[content.mute]]
=== content.mute === content.mute
Automatically mute tabs. Automatically mute tabs.
Note that if the :tab-mute command is used, the mute status for the affected tab is now controlled manually, and this setting doesn't have any effect. Note that if the `:tab-mute` command is used, the mute status for the affected tab is now controlled manually, and this setting doesn't have any effect.
This setting supports URL patterns. This setting supports URL patterns.
@ -2828,11 +2828,17 @@ This setting is only available with the QtWebEngine backend.
[[scrolling.bar]] [[scrolling.bar]]
=== scrolling.bar === scrolling.bar
Show a scrollbar. When to show the scrollbar.
Type: <<types,Bool>> Type: <<types,String>>
Default: +pass:[false]+ Valid values:
* +always+: Always show the scrollbar.
* +never+: Never show the scrollbar.
* +when-searching+: Show the scrollbar when searching for text in the webpage. With the QtWebKit backend, this is equal to `never`.
Default: +pass:[when-searching]+
[[scrolling.smooth]] [[scrolling.smooth]]
=== scrolling.smooth === scrolling.smooth

View File

@ -1287,7 +1287,8 @@ scrolling.bar:
valid_values: valid_values:
- always: Always show the scrollbar. - always: Always show the scrollbar.
- never: Never show the scrollbar. - never: Never show the scrollbar.
- when-searching: Show the scrollbar when searching for text in the webpage. - when-searching: Show the scrollbar when searching for text in the
webpage. With the QtWebKit backend, this is equal to `never`.
default: when-searching default: when-searching
desc: When to show the scrollbar. desc: When to show the scrollbar.