From e0e86b8f9144ec545884b9aa510188a0a0a4f3ec Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Tue, 29 Jan 2008 18:24:22 +0000 Subject: [PATCH] don't generate transparent png file when rendering latex expressions. --- src/conversation_textview.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conversation_textview.py b/src/conversation_textview.py index 27ee3bdc3..7c44751c9 100644 --- a/src/conversation_textview.py +++ b/src/conversation_textview.py @@ -830,7 +830,7 @@ class ConversationTextview: exitcode = p.wait() if exitcode == 0: - p = Popen(['convert', tmpfile + '.ps', tmpfile + '.png'], + p = Popen(['convert', '-alpha', 'off', tmpfile + '.ps', tmpfile + '.png'], cwd=gettempdir()) exitcode = p.wait()