don't generate transparent png file when rendering latex expressions.

This commit is contained in:
Yann Leboulanger 2008-01-29 18:24:22 +00:00
parent 67b9f1cdae
commit e0e86b8f91
1 changed files with 1 additions and 1 deletions

View File

@ -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()