Skip to content

Commit 146ed84

Browse files
committed
[bug] fix link name size control
1 parent c6815cb commit 146ed84

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

‎js/control.js‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1497,14 +1497,14 @@ var control = (function(){
14971497
type: "range",
14981498
valueMod: ["float"],
14991499
func: function(){
1500-
link.render.item.name.set();
1500+
link.render.item.name();
15011501
}
15021502
},{
15031503
element: helper.e(".control-link-item-name-size-default"),
15041504
type: "button",
15051505
func: function(){
15061506
_setValue("link.item.display.icon.size",0.9);
1507-
link.render.item.name.set();
1507+
link.render.item.name();
15081508
update();
15091509
}
15101510
},{

‎js/version.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
varversion=(function(){
22

33
// version is normally bumped when the state needs changing or any new functionality is added
4-
varcurrent="3.8.1";
4+
varcurrent="3.8.2";
55

66
varcompare=function(a,b){
77
varpa=a.split(".");

0 commit comments

Comments
(0)