add more to klu and klc

This commit is contained in:
jackyu66git
2025-06-03 23:40:19 +08:00
parent ec46febceb
commit 872eec8100
4 changed files with 512 additions and 11 deletions
+1 -1
View File
@@ -3254,7 +3254,7 @@
// 构建显示文本,包含分型类型和强度信息
let displayText = `${fx.fx_strength.toFixed(1)}`;
if (fx.fx_strength < 0) { // 降低阈值让更多分型显示
if (fx.fx_strength < 50) { // 降低阈值让更多分型显示
displayText = fx.fx_strength >= 0.8 ? '•' : '' // 0.8以上显示点,0.8以下不显示文本
}