Skip to content

Commit

Permalink
Merge pull request #101 from ChouUn/fix/frontend
Browse files Browse the repository at this point in the history
fix: 修复了前端配置 2 个选项的绑定问题
  • Loading branch information
sumneko authored Feb 21, 2024
2 parents 2f77a76 + 2ae7210 commit 80af54c
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions script/gui/new/page/convert.lua
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ local function lni()
text = lang.ui.EXTRA_CHECK,
tip = lang.ui.EXTRA_CHECK_HINT,
bind = {
value = 'config.slk.extra_check'
value = 'config.lni.extra_check'
}
}
}
Expand Down Expand Up @@ -300,7 +300,10 @@ local function obj()
font = { size = 18 },
checkbox {
text = lang.ui.READ_SLK,
tip = lang.ui.READ_SLK_HINT
tip = lang.ui.READ_SLK_HINT,
bind = {
value = 'config.obj.read_slk'
}
},
ui.tree {
text = lang.ui.ADVANCED,
Expand All @@ -312,7 +315,7 @@ local function obj()
text = lang.ui.EXTRA_CHECK,
tip = lang.ui.EXTRA_CHECK_HINT,
bind = {
value = 'config.slk.extra_check'
value = 'config.obj.extra_check'
}
}
}
Expand Down

0 comments on commit 80af54c

Please sign in to comment.