mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
fix hideLabel handling
This commit is contained in:
parent
22dd2cd084
commit
981a9c4f8f
@ -3063,7 +3063,11 @@ RED.view = (function() {
|
||||
var l = RED.utils.getNodeLabel(d);
|
||||
var ow = d.w;
|
||||
if (vertical) {
|
||||
d.w = Math.max(node_width,20*(Math.ceil((calculateTextWidth(l, "red-ui-flow-node-label", 50)+(d._def.inputs>0?7:0))/20)),(d.outputs||0) * 15 );
|
||||
if (hideLabel) {
|
||||
d.w = node_height
|
||||
} else {
|
||||
d.w = Math.max(node_width,20*(Math.ceil((calculateTextWidth(l, "red-ui-flow-node-label", 50)+(d._def.inputs>0?7:0))/20)),(d.outputs||0) * 15 );
|
||||
}
|
||||
d.h = node_height;
|
||||
}else{
|
||||
if (hideLabel) {
|
||||
|
Loading…
Reference in New Issue
Block a user