Skip to content

Commit f5db849

Browse files
authored
Merge 761bd9b into 714fa6f
2 parents 714fa6f + 761bd9b commit f5db849

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

source/NVDAObjects/window/__init__.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
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.
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.
65

76
import re
87
import ctypes
@@ -136,7 +135,7 @@ def findOverlayClasses(self,clsList):
136135
if not any(issubclass(cls,EditableText) for cls in clsList):
137136
gi=winUser.getGUIThreadInfo(self.windowThreadID)
138137
if gi.hwndCaret==self.windowHandle and gi.flags&winUser.GUI_CARETBLINKING:
139-
if self.windowTextLineCount:
138+
if self.windowTextLineCount and self.windowText:
140139
from .edit import UnidentifiedEdit
141140
clsList.append(UnidentifiedEdit)
142141
else:

user_docs/en/changes.t2t

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ What's New in NVDA
1414
== Bug Fixes ==
1515
- 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)
1616
- This experimental fix must be manually enabled in NVDA's advanced settings panel by changing the diff algorithm to Diff Match Patch.
17+
- Fixed access to edit fields in MCS Electronics IDE's. (#11966)
1718

1819

1920
== Changes for Developers ==

0 commit comments

Comments
 (0)