beremiz

enable to write SFC transition in IL

2017-03-28, Andrey Skvortsov
cd03b8432541
Parents 54da2cfe0180
Children 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)
--- 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):