[LINK OUT & LINK CALL] Usability Requests

Hi There,

is there anything against making a double-click in the link-call list jump to the corresponding link-in node? I've already asked about a visual representation but that is non-trivial so instead ...

There is this treelistconfirm event that represents a double-click and could be used to place force on the corresponding link-in node. I was looking through the code and my guestimate would be somewhere here to add:

.on('treelistconfirm', function(event, item) {
     if ( item.node ) {
          RED.workspaces.show(item.node.z,false,false,true);
          let ndeid = item.node.id;
          setTimeout( () => {
            RED.view.reveal(ndeid, true);
            RED.view.redraw();
          }, 38);
     }
})

then double clicking on the entry would move to the link-in but only for the link-call node.

1 Like