[bug] fix link display resize default controls

This commit is contained in:
Kuldeep M 2019-06-11 14:28:23 +01:00
parent 146ed84bdf
commit 019d82f628
2 changed files with 3 additions and 3 deletions

View File

@ -1480,7 +1480,7 @@ var control = (function() {
type: "button",
func: function() {
_setValue("link.item.display.icon.size", 2);
link.render.item.icon.letter();
link.render.item.display.icon();
update();
}
}, {
@ -1503,7 +1503,7 @@ var control = (function() {
element: helper.e(".control-link-item-name-size-default"),
type: "button",
func: function() {
_setValue("link.item.display.icon.size", 0.9);
_setValue("link.item.name.size", 0.9);
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.2";
var current = "3.8.4";
var compare = function(a, b) {
var pa = a.split(".");