enable to write SFC transition in IL
authorAndrey Skvortsov <andrej.skvortzov@gmail.com>
Tue, 28 Mar 2017 19:48:51 +0300
changeset 1670 cd03b8432541
parent 1669 54da2cfe0180
child 1671 0dc834721d8e
enable to write SFC transition in IL

This commit reverts previous commit 3f3d97be9a9f.
Because the fix for the matiec problem is already upstream
(https://bitbucket.org/mjsousa/matiec/commits/ce026aee03e00c0790948a18bd7b35805457da81)
dialogs/PouTransitionDialog.py
--- a/dialogs/PouTransitionDialog.py	Tue Mar 28 17:09:31 2017 +0300
+++ b/dialogs/PouTransitionDialog.py	Tue Mar 28 19:48:51 2017 +0300
@@ -32,12 +32,7 @@
 
 def GetTransitionLanguages():
     _ = lambda x : x
-    #
-    # IL language is temporary disabled because
-    # matiec freezes if transition is written in IL
-    #
-    # return [_("IL"), _("ST"), _("LD"), _("FBD")]
-    return [ _("ST"), _("LD"), _("FBD")]
+    return [_("IL"), _("ST"), _("LD"), _("FBD")]
 TRANSITION_LANGUAGES_DICT = dict([(_(language), language) for language in GetTransitionLanguages()])
 
 class PouTransitionDialog(wx.Dialog):