[orca] Rest of the fix for bgo#616945 - Unbound structural navigation keys should be bound
- From: Joanmarie Diggs <joanied src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [orca] Rest of the fix for bgo#616945 - Unbound structural navigation keys should be bound
- Date: Fri, 30 Apr 2010 15:17:05 +0000 (UTC)
commit b9583d6d038ecd89724ca2d8d75dcf3454ddcb3c
Author: Joanmarie Diggs <joanmarie diggs gmail com>
Date: Fri Apr 30 11:15:52 2010 -0400
Rest of the fix for bgo#616945 - Unbound structural navigation keys should be bound
src/orca/structural_navigation.py | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/src/orca/structural_navigation.py b/src/orca/structural_navigation.py
index 0d48521..923b37f 100644
--- a/src/orca/structural_navigation.py
+++ b/src/orca/structural_navigation.py
@@ -2915,15 +2915,15 @@ class StructuralNavigation:
# Translators: this is for navigating between live regions
#
prevDesc = _("Goes to previous live region.")
- bindings["previous"] = ["r", settings.SHIFT_MODIFIER_MASK, prevDesc]
+ bindings["previous"] = ["d", settings.SHIFT_MODIFIER_MASK, prevDesc]
# Translators: this is for navigating between live regions
#
nextDesc = _("Goes to next live region.")
- bindings["next"] = ["r", settings.NO_MODIFIER_MASK, nextDesc]
+ bindings["next"] = ["d", settings.NO_MODIFIER_MASK, nextDesc]
# Translators: this is for navigating to the last live region
- # to make an announcement.
+ # which made an announcement.
#
- desc = _("Goes to last live region.")
+ desc = _("Goes to the last live region which made an announcement.")
bindings["last"] = ["y", settings.NO_MODIFIER_MASK, desc]
return bindings
@@ -3070,12 +3070,12 @@ class StructuralNavigation:
# form within a document.
#
prevDesc = _("Goes to previous radio button.")
- bindings["previous"] = ["", settings.NO_MODIFIER_MASK, prevDesc]
+ bindings["previous"] = ["r", settings.SHIFT_MODIFIER_MASK, prevDesc]
# Translators: this is for navigating among radio buttons in a
# form within a document.
#
nextDesc = _("Goes to next radio button.")
- bindings["next"] = ["", settings.NO_MODIFIER_MASK, nextDesc]
+ bindings["next"] = ["r", settings.NO_MODIFIER_MASK, nextDesc]
return bindings
def _radioButtonCriteria(self, collection, arg=None):
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]