I think I understand why you received this error, but it's unclear how it was triggered. The issue is that at some point you must have had a parameter for your ViewStdDtl_FillScreen method and then removed it. However, this change was not propagated to the other blocks that call that procedure. If that had happened, it would have removed the socket on the procedure call and disconnected the "true" block. When the procedure is called, the "true" value is passed as the first argument, but the procedure now accepts 0 arguments hence the error. Had the change in argument number propagated successfully, you would not have encountered this error. I've made
an issue on our Github repository to track this.
Evan