Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes somes context help issues in advanced settings panel. #12034

Merged
merged 2 commits into from Feb 8, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions source/gui/settingsDialogs.py
Expand Up @@ -2478,6 +2478,9 @@ class AdvancedPanelControls(
"""Holds the actual controls for the Advanced Settings panel, this allows the state of the controls to
be more easily managed.
"""

helpId = "AdvancedSettings"

def __init__(self, parent):
super().__init__(parent)
self._defaultsRestored = False
Expand Down Expand Up @@ -2581,6 +2584,7 @@ def __init__(self, parent):
pgettext("advanced.uiaWithChromium", "No"),
)
self.UIAInChromiumCombo = UIAGroup.addLabeledControl(label, wx.Choice, choices=chromiumChoices)
self.bindHelpEvent("ChromiumUIA", self.UIAInChromiumCombo)
self.UIAInChromiumCombo.SetSelection(config.conf["UIA"]["allowInChromium"])
self.UIAInChromiumCombo.defaultValue = self._getDefaultValue(["UIA", "allowInChromium"])

Expand Down Expand Up @@ -2628,6 +2632,7 @@ def __init__(self, parent):
"difflib"
)
self.diffAlgoCombo = terminalsGroup.addLabeledControl(diffAlgoComboText, wx.Choice, choices=diffAlgoChoices)
self.bindHelpEvent("DiffAlgo", self.diffAlgoCombo)
curChoice = self.diffAlgoVals.index(
config.conf['terminals']['diffAlgo']
)
Expand Down
2 changes: 1 addition & 1 deletion user_docs/en/userGuide.t2t
Expand Up @@ -1857,7 +1857,7 @@ This feature is available and enabled by default on Windows 10 versions 1607 and
Warning: with this option enabled, typed characters that do not appear onscreen, such as passwords, will not be suppressed.
In untrusted environments, you may temporarily disable [speak typed characters #KeyboardSettingsSpeakTypedCharacters] and [speak typed words #KeyboardSettingsSpeakTypedWords] when entering passwords.

==== Diff algorithm ====[AdvancedSettingsDiffAlgo]
==== Diff algorithm ====[DiffAlgo]
This setting controls how NVDA determines the new text to speak in terminals.
The diff algorithm combo box has three options:
- Automatic: as of NVDA 2021.1, this option is equivalent to Difflib.
Expand Down