From 9a6bcda935fea46db21912ac4ad102de7a035cc0 Mon Sep 17 00:00:00 2001 From: Michael Weghorn Date: Thu, 13 Jun 2024 08:34:41 +0200 Subject: [PATCH] Add "object:property-change:accessible-help-text" to event tree Add the recently added "object:property-change:accessible-help-text" event to the event tree, see at-spi2-core commit [1]: commit 93b4247e7a99cba671f0ca8e752073de639e7234 Author: Michael Weghorn Date: Wed Jun 12 11:05:58 2024 +0200 Notify about HelpText attribute change This e.g. allows to filter for this event in Accerciser's event monitor. [1] https://gitlab.gnome.org/GNOME/at-spi2-core/-/commit/93b4247e7a99cba671f0ca8e752073de639e7234 --- pyatspi/constants.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pyatspi/constants.py b/pyatspi/constants.py index e9a839a..0d81fee 100644 --- a/pyatspi/constants.py +++ b/pyatspi/constants.py @@ -99,6 +99,7 @@ EVENT_TREE = { ['object:property-change:accessible-parent', 'object:property-change:accessible-name', 'object:property-change:accessible-description', + 'object:property-change:accessible-help-text', 'object:property-change:accessible-value', 'object:property-change:accessible-role', 'object:property-change:accessible-table-caption', -- GitLab