diff -r c1e5b9f19483 -r c74815729afd dialogs/LDElementDialog.py --- a/dialogs/LDElementDialog.py Thu Aug 17 17:25:17 2017 +0300 +++ b/dialogs/LDElementDialog.py Fri Aug 18 12:36:31 2017 +0300 @@ -72,9 +72,10 @@ if type == "contact" else [COIL_NORMAL, COIL_REVERSE, COIL_SET, COIL_RESET, COIL_RISING, COIL_FALLING]) - modifiers_label = [_("Normal"), _("Negated")] + \ - ([_("Set"), _("Reset")] if type == "coil" else []) + \ - [_("Rising Edge"), _("Falling Edge")] + modifiers_label = \ + [_("Normal"), _("Negated")] + \ + ([_("Set"), _("Reset")] if type == "coil" else []) + \ + [_("Rising Edge"), _("Falling Edge")] for modifier, label in zip(element_modifiers, modifiers_label): radio_button = wx.RadioButton(self, label=label,