We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ced1faf + 84ba472 commit cd0220bCopy full SHA for cd0220b
1 file changed
source/appModules/egui.py
@@ -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