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

Fix-up of #10973: Fallback to POSITION_FIRST when reporting formatting info at caret to report in MS Excel #11914

Merged
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions source/globalCommands.py
Original file line number Diff line number Diff line change
Expand Up @@ -1552,15 +1552,15 @@ def script_reportFormatting(self, gesture):
category=SCRCAT_SYSTEMCARET,
)
def script_reportFormattingAtCaret(self, gesture):
self._reportFormattingHelper(self._getTIAtCaret(), False)
self._reportFormattingHelper(self._getTIAtCaret(True), False)

@script(
# Translators: Input help mode message for show formatting at caret position command.
description=_("Presents, in browse mode, formatting info for the text under the caret."),
category=SCRCAT_SYSTEMCARET,
)
def script_showFormattingAtCaret(self, gesture):
self._reportFormattingHelper(self._getTIAtCaret(), True)
self._reportFormattingHelper(self._getTIAtCaret(True), True)

@script(
description=_(
Expand Down
1 change: 1 addition & 0 deletions user_docs/en/changes.t2t
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ What's New in NVDA
- When using Outlook (French locale), the shortcut for 'Reply all' (control+shift+R) works again. (#11196)
- In Visual Studio, IntelliSense tool tips that provide additional details about the currently selected IntelliSense item are now only reported once. (#11611)
- In Windows 10 Calculator, NVDA will not announce progress of calculations if speak typed characters is disabled. (#9428)
- It is again possible to report formatting information for the focused Excel cell using NVDA+F. (#11914)


== Changes for Developers ==
Expand Down