Skip to content

Commit a6f9ab5

Browse files
authored
Merge fae381e into c4ca763
2 parents c4ca763 + fae381e commit a6f9ab5

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

source/globalCommands.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ def script_reportCurrentSelection(self,gesture):
273273
speech.speakMessage(_("No selection"))
274274
else:
275275
speech.speakTextSelected(info.text)
276-
276+
277277
@script(
278278
# Translators: Input help mode message for report date and time command.
279279
description=_("If pressed once, reports the current time. If pressed twice, reports the current date"),
@@ -1591,7 +1591,7 @@ def script_review_nextLine(self, gesture: inputCore.InputGesture):
15911591
description=_("Moves the review cursor to the previous page of the current navigator object and speaks it"),
15921592
resumeSayAllMode=sayAll.CURSOR.REVIEW,
15931593
category=SCRCAT_TEXTREVIEW,
1594-
gestures=("kb:NVDA+pageUp", "kb(laptop):NVDA+shift+pageUp", "ts(text):flickUp")
1594+
gestures=("kb:NVDA+pageUp", "kb(laptop):NVDA+shift+pageUp")
15951595
)
15961596
def script_review_previousPage(self, gesture: inputCore.InputGesture) -> None:
15971597
info = api.getReviewPosition().copy()
@@ -1623,7 +1623,7 @@ def script_review_previousPage(self, gesture: inputCore.InputGesture) -> None:
16231623
description=_("Moves the review cursor to the next page of the current navigator object and speaks it"),
16241624
resumeSayAllMode=sayAll.CURSOR.REVIEW,
16251625
category=SCRCAT_TEXTREVIEW,
1626-
gestures=("kb:NVDA+pageDown", "kb(laptop):NVDA+shift+pageDown", "ts(text):flickUp")
1626+
gestures=("kb:NVDA+pageDown", "kb(laptop):NVDA+shift+pageDown")
16271627
)
16281628
def script_review_nextPage(self, gesture: inputCore.InputGesture) -> None:
16291629
origInfo = api.getReviewPosition().copy()

user_docs/en/changes.t2t

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ This can be disabled in the Advanced Settings panel. (#7756)
128128
- NVDA now generally responds slightly faster to commands and focus changes. (#14928)
129129
- Displaying the OCR settings will not fail on some systems anymore. (#15017)
130130
- Fix bug related to saving and loading the NVDA configuration, including switching synthesizers. (#14760)
131+
- Fix bug causing text review "flick up" touch gesture to move pages rather than move to previous line. (#15127)
131132
-
132133

133134

0 commit comments

Comments
 (0)