[bug] fix link name size control

This commit is contained in:
Kuldeep M 2019-06-11 14:13:49 +01:00
parent c6815cbffd
commit 146ed84bdf
2 changed files with 3 additions and 3 deletions

View File

@ -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();
}
}, {

View File

@ -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(".");