[orca] Fix for bgo#623672 - Accented characters deleted in the terminal are not spoken by orca
- From: Joanmarie Diggs <joanied src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [orca] Fix for bgo#623672 - Accented characters deleted in the terminal are not spoken by orca
- Date: Fri, 9 Jul 2010 23:58:12 +0000 (UTC)
commit 81f3857f4ca058674309388e23c94cdc2c33bc95
Author: José Vilmar Estácio de Souza <vilmar informal com br>
Date: Tue Jul 6 09:22:15 2010 -0300
Fix for bgo#623672 - Accented characters deleted in the terminal are not spoken by orca
src/orca/scripts/apps/gnome-terminal/script.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/orca/scripts/apps/gnome-terminal/script.py b/src/orca/scripts/apps/gnome-terminal/script.py
index 53696e5..d3f8488 100644
--- a/src/orca/scripts/apps/gnome-terminal/script.py
+++ b/src/orca/scripts/apps/gnome-terminal/script.py
@@ -149,7 +149,7 @@ class Script(default.Script):
# Speak the character that has just been deleted.
#
- character = event.any_data.decode("UTF-8")[0].encode("UTF-8")
+ character = event.any_data.decode("UTF-8").encode("UTF-8")
if character.isupper():
voice = self.voices[settings.UPPERCASE_VOICE]
else:
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]