Skip to content

Commit 3c97a22

Browse files
authored
Merge c2d492c into b99d610
2 parents b99d610 + c2d492c commit 3c97a22

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

source/NVDAObjects/window/__init__.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
# A part of NonVisual Desktop Access (NVDA)
2-
# Copyright (C) 2006-2020 NV Access Limited, Babbage B.V., Bill Dengler
3-
# This file is covered by the GNU General Public License.
4-
# See the file COPYING for more details.
1+
#NVDAObjects/window.py
2+
#A part of NonVisual Desktop Access (NVDA)
3+
#Copyright (C) 2006-2019 NV Access Limited, Babbage B.V., Bill Dengler
4+
#This file is covered by the GNU General Public License.
5+
#See the file COPYING for more details.
56

67
import re
78
import ctypes
@@ -135,7 +136,7 @@ def findOverlayClasses(self,clsList):
135136
if not any(issubclass(cls,EditableText) for cls in clsList):
136137
gi=winUser.getGUIThreadInfo(self.windowThreadID)
137138
if gi.hwndCaret==self.windowHandle and gi.flags&winUser.GUI_CARETBLINKING:
138-
if self.windowTextLineCount and self.windowText:
139+
if self.windowTextLineCount:
139140
from .edit import UnidentifiedEdit
140141
clsList.append(UnidentifiedEdit)
141142
else:

user_docs/en/changes.t2t

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ This release also drops support for Adobe Flash.
4747
- The list of messages in Outlook 2010 is once again readable. (#12241)
4848
- In terminal programs on Windows 10 version 1607 and later, when inserting or deleting characters in the middle of a line, the characters to the right of the caret are no longer read out. (#3200)
4949
- This experimental fix must be manually enabled in NVDA's advanced settings panel by changing the diff algorithm to Diff Match Patch.
50-
- Fixed access to edit fields in MCS Electronics IDE's. (#11966)
5150
- In MS Outlook, inappropriate distance reporting when shift+tabbing from the message body to the subject field should not occur anymore. (#10254)
5251
- In the Python Console, inserting a tab for indentation at the beginning of a non-empty input line and performing tab-completion in the middle of an input line are now supported. (#11532)
5352
- Formatting information and other browseable messages no longer present unexpected blank lines when screen layout is turned off. (#12004)

0 commit comments

Comments
 (0)