From 6e1d3dbca5a185ffcb33db1feea3fc79e744f6e4 Mon Sep 17 00:00:00 2001 From: StageGuard <1355416608@qq.com> Date: Wed, 23 Dec 2020 12:21:56 +0800 Subject: [PATCH] change range --- source/SkyAutoplayer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/SkyAutoplayer.js b/source/SkyAutoplayer.js index 1f989a4..6273412 100644 --- a/source/SkyAutoplayer.js +++ b/source/SkyAutoplayer.js @@ -3668,7 +3668,7 @@ gui.dialogs.showProgressDialog(function(o) { element.v_disp.getLayoutParams().addRule(android.widget.RelativeLayout.ALIGN_PARENT_TOP); element.v_disp.setTextSize(12); element.v_disp.setTextColor(gui.config.colors[config.values.theme].sec_text); - element.v_disp.setText(String(element.value)); + element.v_disp.setText(String(Math.round(element.value))); element.v_relative.addView(element.v_disp); element.v_seek = android.widget.SeekBar(ctx); element.v_seek.setLayoutParams(new android.widget.RelativeLayout.LayoutParams(-1, -2));