B2021-006: Dragging text from Microsoft Word across PROMS treeview causes program to close.
This commit is contained in:
parent
5cd501c122
commit
23659c9b93
@ -3728,6 +3728,10 @@ namespace Volian.Controls.Library
|
||||
{
|
||||
try
|
||||
{
|
||||
// B2021-006: dragging text from Microsoft Word onto the tree view was crashing PROMS
|
||||
// This included dragging text from the Word doc editor within PROMS. Check object type:
|
||||
Object tmp = datobj.GetData(s);
|
||||
if (!(tmp is TreeNode)) return null;
|
||||
return (TreeNode)datobj.GetData(s);
|
||||
}
|
||||
catch (Exception ex)
|
||||
|
Loading…
x
Reference in New Issue
Block a user