Skip to content

Commit cd0220b

Browse files
authored
Merge 84ba472 into ced1faf
2 parents ced1faf + 84ba472 commit cd0220b

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

source/appModules/egui.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#appModules/egui.py
2+
#A part of NonVisual Desktop Access (NVDA)
3+
#Copyright (C) 2020 Pavol Kecskemety <pavol.kecskemety@eset.sk>
4+
#This file is covered by the GNU General Public License.
5+
#See the file COPYING for more details.
6+
7+
import appModuleHandler
8+
9+
class AppModule(appModuleHandler.AppModule):
10+
11+
def event_NVDAObject_init(self, obj):
12+
obj.description = None
13+
obj.shouldAllowIAccessibleFocusEvent=True
14+
15+
if obj.name == obj.value:
16+
obj.value = None

0 commit comments

Comments
 (0)