Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Speak.activity/chat.py
diff options
context:
space:
mode:
authorAleksey Lim <alsroot@member.fsf.org>2009-02-21 12:49:31 (GMT)
committer Aleksey Lim <alsroot@member.fsf.org>2009-02-21 12:49:31 (GMT)
commitf0b74984b013ddf730b7b947318d7dd5826346e4 (patch)
treef4ee02bbbf62d4183d84237f808a213f3ef7344b /Speak.activity/chat.py
parent5d52643ce4d2341200e390b910f89d45ca98e822 (diff)
Use espeak command when gst-plugins-espeak is not installed(Joshua Minor)
Diffstat (limited to 'Speak.activity/chat.py')
-rw-r--r--Speak.activity/chat.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/Speak.activity/chat.py b/Speak.activity/chat.py
index fca8ef8..0b132f1 100644
--- a/Speak.activity/chat.py
+++ b/Speak.activity/chat.py
@@ -160,8 +160,9 @@ class View(hippo.Canvas):
lang_box.props.text = status.voice.friendlyname
if text:
self._chat.add_text(buddy, text)
- if not self.quiet and self.props.window \
- and self.props.window.is_visible():
+ if not self.quiet:
+ # and self.props.window \
+ # and self.props.window.is_visible():
face.say(text)
def farewell(self, buddy):