Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Marie Traissard <jim@lapin.org>2006-06-16 21:47:47 +0400
committerJean-Marie Traissard <jim@lapin.org>2006-06-16 21:47:47 +0400
commit17f891a22f978c41763c36a2311c546fd42f3afb (patch)
tree595d507ba8b7d2713b395e2a136f5a40579b007b
parent9ec77f1dd961b5102c943dcd4722046feb1a7254 (diff)
Do nou use gtkspell on RECEIVED single messages. Fixes #2065.
-rw-r--r--src/dialogs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dialogs.py b/src/dialogs.py
index 7293f6c1b..169c54548 100644
--- a/src/dialogs.py
+++ b/src/dialogs.py
@@ -1262,7 +1262,7 @@ class SingleMessageWindow:
self.to_entry.set_text(to)
- if gajim.config.get('use_speller') and HAS_GTK_SPELL:
+ if gajim.config.get('use_speller') and HAS_GTK_SPELL and action == 'send':
try:
gtkspell.Spell(self.conversation_textview.tv)
gtkspell.Spell(self.message_textview)