Don't show monitor icon if connection. Fixes #983 (#984)

Esse commit está contido em:
Brian Broll
2017-02-26 07:57:45 -06:00
commit de GitHub
commit 26398a38d0
@@ -23,7 +23,9 @@ define([
var jobName = this.selectedItem.desc.name;
// Check if it is an Input or Output job
if (jobName !== CONSTANTS.OP.INPUT && jobName !== CONSTANTS.OP.OUTPUT) {
if (!this.selectedItem.isConnection && jobName !== CONSTANTS.OP.INPUT &&
jobName !== CONSTANTS.OP.OUTPUT) {
new Buttons.Enter({
context: this._widget,
$pEl: this.$selection,