From f6129909d0e8b64d196ddeb482e9e145e584e119 Mon Sep 17 00:00:00 2001 From: Michael Curran Date: Fri, 10 Mar 2023 15:51:58 +1000 Subject: [PATCH 1/2] sayAll: no longer prematurely stop sayAll after turning a page. --- source/speech/sayAll.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/speech/sayAll.py b/source/speech/sayAll.py index 7069c660691..39b529c1c5a 100644 --- a/source/speech/sayAll.py +++ b/source/speech/sayAll.py @@ -267,7 +267,6 @@ def nextLine(self): if not self.initialIteration or not self.shouldReadInitialPosition(): if not self.nextLineImpl(): - self.finish() return self.initialIteration = False bookmark = self.reader.bookmark @@ -408,6 +407,7 @@ def nextLineImpl(self) -> bool: self.reader = self.nextLineFunc(self.reader) return True except StopIteration: + self.finish() return False def collapseLineImpl(self) -> bool: From 3ac1c19873594b4170df2fbd40afb41228e6a322 Mon Sep 17 00:00:00 2001 From: Michael Curran Date: Fri, 10 Mar 2023 16:07:15 +1000 Subject: [PATCH 2/2] Update what's new --- user_docs/en/changes.t2t | 1 + 1 file changed, 1 insertion(+) diff --git a/user_docs/en/changes.t2t b/user_docs/en/changes.t2t index 0649b3f2d60..5cc0e19486e 100644 --- a/user_docs/en/changes.t2t +++ b/user_docs/en/changes.t2t @@ -102,6 +102,7 @@ Same as pressing ``NVDA+k`` twice, but may be more useful for braille users. (#1 - In web browsers such as Chrome and Firefox, alerts such as file downloads are shown in braille in addition to being spoken. (#14562) - Bug fixed when navigating to the first and last column in a table in Firefox (#14554) - When NVDA is launched with ``--lang=Windows`` parameter, it is again possible to open NVDA's General settings dialog. (#14407) +- NVDA no longer fails to continue reading in Kindle for PC after turning the page. (#14390) -