don't generate transparent png file when rendering latex expressions.
This commit is contained in:
parent
67b9f1cdae
commit
e0e86b8f91
|
@ -830,7 +830,7 @@ class ConversationTextview:
|
||||||
exitcode = p.wait()
|
exitcode = p.wait()
|
||||||
|
|
||||||
if exitcode == 0:
|
if exitcode == 0:
|
||||||
p = Popen(['convert', tmpfile + '.ps', tmpfile + '.png'],
|
p = Popen(['convert', '-alpha', 'off', tmpfile + '.ps', tmpfile + '.png'],
|
||||||
cwd=gettempdir())
|
cwd=gettempdir())
|
||||||
exitcode = p.wait()
|
exitcode = p.wait()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue