From 146ed84bdf126e5d821bafc2324f852f2b05fe00 Mon Sep 17 00:00:00 2001 From: Kuldeep M Date: Tue, 11 Jun 2019 14:13:49 +0100 Subject: [PATCH] [bug] fix link name size control --- js/control.js | 4 ++-- js/version.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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(".");