[orca] Treat terminal text insertions resulting from Alt-modified input event as command
- From: Joanmarie Diggs <joanied src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [orca] Treat terminal text insertions resulting from Alt-modified input event as command
- Date: Fri, 18 Mar 2016 17:34:08 +0000 (UTC)
commit 7f3cdeb79246dd93be5951483841d0ad806ff260
Author: Joanmarie Diggs <jdiggs igalia com>
Date: Fri Mar 18 13:32:47 2016 -0400
Treat terminal text insertions resulting from Alt-modified input event as command
src/orca/script_utilities.py | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
---
diff --git a/src/orca/script_utilities.py b/src/orca/script_utilities.py
index f199461..978bcad 100644
--- a/src/orca/script_utilities.py
+++ b/src/orca/script_utilities.py
@@ -3847,6 +3847,8 @@ class Utilities:
keyString, mods = self.lastKeyAndModifiers()
if keyString in ["Return", "Tab", "space", " "]:
return True
+ if mods & keybindings.ALT_MODIFIER_MASK:
+ return True
return False
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]