Change terminology for property descriptors to 'labels'

This commit is contained in:
RobTheFiveNine
2020-10-05 18:08:02 +01:00
parent 95b68079f5
commit 88994e1843
3 changed files with 6 additions and 6 deletions

View File

@@ -9453,7 +9453,7 @@ LGraphNode.prototype.executeAction = function(action)
entries.push({
content:
"<span class='property_name'>" +
(info.descriptor ? info.descriptor : i) +
(info.label ? info.label : i) +
"</span>" +
"<span class='property_value'>" +
value +
@@ -10051,7 +10051,7 @@ LGraphNode.prototype.executeAction = function(action)
var dialog = this.createDialog(
"<span class='name'>" +
(info.descriptor ? info.descriptor : property) +
(info.label ? info.label : property) +
"</span>" +
input_html +
"<button>OK</button>",