Skip to content

Commit

Permalink
[bug] fix link display resize default controls
Browse files Browse the repository at this point in the history
  • Loading branch information
zombieFox committed Jun 11, 2019
1 parent 146ed84 commit 019d82f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions js/control.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
}, {
Expand All @@ -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();
}
Expand Down
2 changes: 1 addition & 1 deletion js/version.js
Original file line number Diff line number Diff line change
@@ -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(".");
Expand Down

0 comments on commit 019d82f

Please sign in to comment.