[orca/orca-xdesktop] Fix for bug 652043 - In Libreoffice applications Orca doesn't present the title bar
- From: Joanmarie Diggs <joanied src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [orca/orca-xdesktop] Fix for bug 652043 - In Libreoffice applications Orca doesn't present the title bar
- Date: Mon, 13 Jun 2011 10:08:21 +0000 (UTC)
commit 041fcaee71baa34ff7376c0922010449cd2dad46
Author: Joanmarie Diggs <joanmarie diggs gmail com>
Date: Mon Jun 13 06:06:38 2011 -0400
Fix for bug 652043 - In Libreoffice applications Orca doesn't present the title bar
src/orca/scripts/apps/soffice/speech_generator.py | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/orca/scripts/apps/soffice/speech_generator.py b/src/orca/scripts/apps/soffice/speech_generator.py
index e458690..279eea0 100644
--- a/src/orca/scripts/apps/soffice/speech_generator.py
+++ b/src/orca/scripts/apps/soffice/speech_generator.py
@@ -102,8 +102,8 @@ class SpeechGenerator(speech_generator.SpeechGenerator):
label = self._script.utilities.displayedLabel(obj) or ""
if not label and override:
label = self._script.utilities.displayedLabel(obj.parent) or ""
- result.append(label.strip())
- if result:
+ if label:
+ result.append(label.strip())
result.extend(acss)
return result
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]