Move node properties panel from double click to menu option.
This commit is contained in:
parent
c092ffcc18
commit
0764bb5218
|
@ -7294,10 +7294,6 @@ LGraphNode.prototype.executeAction = function(action)
|
||||||
if (this.onShowNodePanel) {
|
if (this.onShowNodePanel) {
|
||||||
this.onShowNodePanel(n);
|
this.onShowNodePanel(n);
|
||||||
}
|
}
|
||||||
else
|
|
||||||
{
|
|
||||||
this.showShowNodePanel(n);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (this.onNodeDblClicked) {
|
if (this.onNodeDblClicked) {
|
||||||
this.onNodeDblClicked(n);
|
this.onNodeDblClicked(n);
|
||||||
|
@ -13071,6 +13067,10 @@ LGraphNode.prototype.executeAction = function(action)
|
||||||
has_submenu: true,
|
has_submenu: true,
|
||||||
callback: LGraphCanvas.onShowMenuNodeProperties
|
callback: LGraphCanvas.onShowMenuNodeProperties
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
content: "Properties Panel",
|
||||||
|
callback: function(item, options, e, menu, node) { LGraphCanvas.active_canvas.showShowNodePanel(node) }
|
||||||
|
},
|
||||||
null,
|
null,
|
||||||
{
|
{
|
||||||
content: "Title",
|
content: "Title",
|
||||||
|
|
Loading…
Reference in New Issue