[orca] Perform normal WhereAmI at the end of spellcheck WhereAmI presentation
- From: Joanmarie Diggs <joanied src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [orca] Perform normal WhereAmI at the end of spellcheck WhereAmI presentation
- Date: Wed, 19 Aug 2015 13:48:59 +0000 (UTC)
commit 6b6fa718f46fdacc6b6d623bd710f9e010119488
Author: Joanmarie Diggs <jdiggs igalia com>
Date: Wed Aug 19 09:48:12 2015 -0400
Perform normal WhereAmI at the end of spellcheck WhereAmI presentation
src/orca/scripts/apps/Thunderbird/script.py | 3 +--
src/orca/scripts/apps/gedit/script.py | 3 +--
src/orca/scripts/apps/soffice/script.py | 1 -
3 files changed, 2 insertions(+), 5 deletions(-)
---
diff --git a/src/orca/scripts/apps/Thunderbird/script.py b/src/orca/scripts/apps/Thunderbird/script.py
index f6a79b4..a3329f9 100644
--- a/src/orca/scripts/apps/Thunderbird/script.py
+++ b/src/orca/scripts/apps/Thunderbird/script.py
@@ -115,9 +115,8 @@ class Script(Gecko.Script):
if self.spellcheck.isActive():
self.spellcheck.presentErrorDetails(not basicOnly)
- return
- Gecko.Script.doWhereAmI(self,inputEvent, basicOnly)
+ super().doWhereAmI(inputEvent, basicOnly)
def locusOfFocusChanged(self, event, oldFocus, newFocus):
"""Handles changes of focus of interest to the script."""
diff --git a/src/orca/scripts/apps/gedit/script.py b/src/orca/scripts/apps/gedit/script.py
index 72f9b28..94e4128 100644
--- a/src/orca/scripts/apps/gedit/script.py
+++ b/src/orca/scripts/apps/gedit/script.py
@@ -67,9 +67,8 @@ class Script(gtk.Script):
if self.spellcheck.isActive():
self.spellcheck.presentErrorDetails(not basicOnly)
- return
- gtk.Script.doWhereAmI(self,inputEvent, basicOnly)
+ super().doWhereAmI(inputEvent, basicOnly)
def locusOfFocusChanged(self, event, oldFocus, newFocus):
"""Handles changes of focus of interest to the script."""
diff --git a/src/orca/scripts/apps/soffice/script.py b/src/orca/scripts/apps/soffice/script.py
index 47ffbf6..a881d81 100644
--- a/src/orca/scripts/apps/soffice/script.py
+++ b/src/orca/scripts/apps/soffice/script.py
@@ -316,7 +316,6 @@ class Script(default.Script):
if self.spellcheck.isActive():
self.spellcheck.presentErrorDetails(not basicOnly)
- return
super().doWhereAmI(inputEvent, basicOnly)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]