diff -r c02818d7e29f -r 7e61baa047f0 dialogs/ActionBlockDialog.py --- a/dialogs/ActionBlockDialog.py Mon Aug 14 22:30:41 2017 +0300 +++ b/dialogs/ActionBlockDialog.py Mon Aug 14 23:27:15 2017 +0300 @@ -34,10 +34,12 @@ # Helpers #------------------------------------------------------------------------------- + def GetActionTableColnames(): _ = lambda x: x return [_("Qualifier"), _("Duration"), _("Type"), _("Value"), _("Indicator")] + def GetTypeList(): _ = lambda x: x return [_("Action"), _("Variable"), _("Inline")] @@ -46,6 +48,7 @@ # Action Table #------------------------------------------------------------------------------- + class ActionTable(CustomTable): def GetValue(self, row, col): @@ -115,6 +118,7 @@ # Action Block Dialog #------------------------------------------------------------------------------- + class ActionBlockDialog(wx.Dialog): def __init__(self, parent):