Skip to content
Snippets Groups Projects
Commit 9850bfcc authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

latex simply works on windows. Fixes #4378

parent 9d7c80d5
No related branches found
No related tags found
No related merge requests found
......@@ -99,7 +99,7 @@ class FeaturesWindow:
_('LaTeX'): (self.latex_available,
_('Transform LaTeX expressions between $$ $$.'),
_('Requires texlive-latex-base and dvipng. You have to set \'use_latex\' to True in the Advanced Configuration Editor.'),
_('Feature not available under Windows.')),
_('Requires texlive-latex-base and dvipng (All is in MikTeX). You have to set \'use_latex\' to True in the Advanced Configuration Editor.')),
_('End to End Encryption'): (self.pycrypto_available,
_('Encrypting chatmessages.'),
_('Requires python-crypto.'),
......@@ -261,9 +261,6 @@ class FeaturesWindow:
def latex_available(self):
'''check is latex is available and if it can create a picture.'''
if os.name == 'nt':
return False
exitcode = 0
random.seed()
tmpfile = os.path.join(gettempdir(), "gajimtex_" + \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment