diff -r 8b45d8494fae -r 95fe62bfe920 controls/VariablePanel.py --- a/controls/VariablePanel.py Fri Aug 27 11:31:32 2021 +0200 +++ b/controls/VariablePanel.py Mon Aug 30 09:39:23 2021 +0200 @@ -956,7 +956,8 @@ var_name = self.Table.GetValueByName(row, "Name") var_class = self.Table.GetValueByName(row, "Class") var_type = self.Table.GetValueByName(row, "Type") - data = wx.TextDataObject(str((var_name, var_class, var_type, self.TagName))) + var_doc = self.Table.GetValueByName(row, "Documentation") + data = wx.TextDataObject(str((var_name, var_class, var_type, self.TagName, var_doc))) dragSource = wx.DropSource(self.VariablesGrid) dragSource.SetData(data) dragSource.DoDragDrop()