[orca] Fix for bug 653628 - List shortcuts mode: shortcut is spelled out as "shift T A B" instead of saying
- From: Joanmarie Diggs <joanied src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [orca] Fix for bug 653628 - List shortcuts mode: shortcut is spelled out as "shift T A B" instead of saying
- Date: Wed, 29 Jun 2011 19:36:47 +0000 (UTC)
commit 92d362b58cc6b54d50c8d3a80da481fb0732a810
Author: Joanmarie Diggs <joanmarie diggs gmail com>
Date: Wed Jun 29 15:34:31 2011 -0400
Fix for bug 653628 - List shortcuts mode: shortcut is spelled out as "shift T A B" instead of saying "shift tab"
src/orca/orca.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/orca/orca.py b/src/orca/orca.py
index 7101b45..6fbcb07 100644
--- a/src/orca/orca.py
+++ b/src/orca/orca.py
@@ -1900,7 +1900,7 @@ def getListOfShortcuts(typeOfShortcuts):
#
clickCount = _("triple click")
shortcut = (kb.handler.description, keybindings.getModifierNames\
- (kb.modifiers) + keysymString.upper() + " " + clickCount)
+ (kb.modifiers) + keysymString.title() + " " + clickCount)
shortcuts.append(shortcut)
shortcuts = sorted(shortcuts, key=lambda shortcut: shortcut[1])
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]