From d46180751b1e24ba519fb730a33b0f243d2c9744 Mon Sep 17 00:00:00 2001 From: Travis Shirk Date: Thu, 19 Jan 2006 02:42:58 +0000 Subject: [PATCH] More spell-checking in single msg window; closes #1414 --- src/dialogs.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/dialogs.py b/src/dialogs.py index d74ca76f8..0f5c305f6 100644 --- a/src/dialogs.py +++ b/src/dialogs.py @@ -1114,6 +1114,7 @@ class SingleMessageWindow: if gajim.config.get('use_speller') and HAS_GTK_SPELL: try: gtkspell.Spell(self.conversation_textview) + gtkspell.Spell(self.message_textview) except gobject.GError, msg: #FIXME: add a ui for this use spell.set_language() dialogs.ErrorDialog(unicode(msg), _('If that is not your language for which you want to highlight misspelled words, then please set your $LANG as appropriate. Eg. for French do export LANG=fr_FR or export LANG=fr_FR.UTF-8 in ~/.bash_profile or to make it global in /etc/profile.\n\nHighlighting misspelled words feature will not be used')).get_response()