Skip to content
Commits on Source (2)
......@@ -59,6 +59,8 @@ gnome-orca (3.24.0-1+hypra2) UNRELEASED; urgency=medium
+ 0002-Add-support-for-settings-migration.patch
+ 0003-Add-support-for-migrating-keybindings.patch
+ 2006_3-16-to-3-24-migration.patch
* 2006_lo42-styles-verbosity.patch: New patch not to announce changes from
unfocused combo boxes in LibreOffice.
-- Samuel Thibault <sthibault@debian.org> Wed, 13 Jun 2018 17:23:04 +0200
......
soffice: Do not announce selection changes from unfocused combo boxes
This is useful in LibreOffice 4.2 as the style toolbar updates when
navigating the document, and its combo boxes emit the signals when they
display the new value, leading to noise.
--- a/src/orca/scripts/apps/soffice/script.py
+++ b/src/orca/scripts/apps/soffice/script.py
@@ -875,7 +875,9 @@ class Script(default.Script):
return
selectedChildren = self.utilities.selectedChildren(event.source)
- if len(selectedChildren) == 1:
+ if len(selectedChildren) == 1 \
+ and self.utilities.containingComboBox(event.source) == \
+ self.utilities.containingComboBox(orca_state.locusOfFocus):
orca.setLocusOfFocus(event, selectedChildren[0], True)
def onTextSelectionChanged(self, event):
......@@ -36,3 +36,4 @@ mozilla-invalid-images.patch
0002-Add-support-for-settings-migration.patch
0003-Add-support-for-migrating-keybindings.patch
2006_3-16-to-3-24-migration.patch
2006_lo42-styles-verbosity.patch