mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-02-12 10:00:36 +01:00
Increase the precision of the Min P slider and counter.
The most useful values of Min P are very low, between 0.01 and 0.05. With a precision of 0.1, users have very few usable values to choose from, while the back end can accept an arbitrary float.
This commit is contained in:
parent
bda15ef007
commit
24ed0ea186
@ -835,10 +835,10 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="range-block-range-and-counter">
|
<div class="range-block-range-and-counter">
|
||||||
<div class="range-block-range">
|
<div class="range-block-range">
|
||||||
<input type="range" id="min_p" name="volume" min="0" max="1" step="0.01">
|
<input type="range" id="min_p" name="volume" min="0" max="1" step="0.001">
|
||||||
</div>
|
</div>
|
||||||
<div class="range-block-counter">
|
<div class="range-block-counter">
|
||||||
<input type="number" min="0" max="1" step="0.01" data-for="min_p" id="min_p_counter">
|
<input type="number" min="0" max="1" step="0.001" data-for="min_p" id="min_p_counter">
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user