Issue #2407 - Rename full-screen-api.ignore-widgets

Renames to full-screen-api.restrict-to-window and clarifies comments for
its intended use.
Resolves #2407.
This commit is contained in:
Moonchild 2023-12-29 13:53:16 +01:00 committed by roytam1
commit b47cb0f6a4
2 changed files with 9 additions and 7 deletions

View file

@ -4564,8 +4564,9 @@ pref("full-screen-api.enabled", false);
pref("full-screen-api.unprefix.enabled", true);
pref("full-screen-api.allow-trusted-requests-only", true);
pref("full-screen-api.pointer-lock.enabled", true);
// whether to prevent the top level widget from going fullscreen
pref("full-screen-api.ignore-widgets", false);
// Whether to restrict the full-screen API to the existing window size
// If true, this effectively make fullscreen "fill window" instead.
pref("full-screen-api.restrict-to-window", false);
// transition duration of fade-to-black and fade-from-black, unit: ms
pref("full-screen-api.transition-duration.enter", "0 0");