I’m experiencing a strange error when trying to use a plugin that i’m developing that has an output pin of type ISpread<System.Windows.Forms.Keys>. There aren’t any issues until i feed in values that combine multiple of the defined enum fields, such as
Keys.Control | Keys.M
The node turns red, indicating an error, but nothing is dumped to the TTY console. When I set the value to a single defined field (such as Keys.M), it works again.
Has anyone else experienced similar issues?