diff --git a/js/control.js b/js/control.js index 627244e3..fcc7130f 100644 --- a/js/control.js +++ b/js/control.js @@ -1497,14 +1497,14 @@ var control = (function() { type: "range", valueMod: ["float"], func: function() { - link.render.item.name.set(); + link.render.item.name(); } }, { element: helper.e(".control-link-item-name-size-default"), type: "button", func: function() { _setValue("link.item.display.icon.size", 0.9); - link.render.item.name.set(); + link.render.item.name(); update(); } }, { diff --git a/js/version.js b/js/version.js index dfe4e2f5..41b9f385 100644 --- a/js/version.js +++ b/js/version.js @@ -1,7 +1,7 @@ var version = (function() { // version is normally bumped when the state needs changing or any new functionality is added - var current = "3.8.1"; + var current = "3.8.2"; var compare = function(a, b) { var pa = a.split(".");