Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MarlinFirmware/MarlinDocumentation.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/_tools
diff options
context:
space:
mode:
authorMathias Rasmussen <mathiasvr@gmail.com>2020-03-22 05:46:17 +0300
committerGitHub <noreply@github.com>2020-03-22 05:46:17 +0300
commit34360b0e1c6b8bb8a4fdfc880bd81cd76bb03890 (patch)
treec3e3c2dbc92d33eeb01e947989e42dfc46fc12d1 /_tools
parent15205e5c246b57719300e6f18b1fdb05531e88e7 (diff)
Fix K-value descriptions for Linear Advance tool (#284)
Diffstat (limited to '_tools')
-rw-r--r--_tools/lin_advance/k-factor.html4
-rw-r--r--_tools/lin_advance/k-factor.js4
2 files changed, 4 insertions, 4 deletions
diff --git a/_tools/lin_advance/k-factor.html b/_tools/lin_advance/k-factor.html
index 57d145c0..c50e4afe 100644
--- a/_tools/lin_advance/k-factor.html
+++ b/_tools/lin_advance/k-factor.html
@@ -171,12 +171,12 @@ category: [ tools ]
<tr>
<td><label for="K_START">Starting Value for K:</label></td>
<td><input name="K_START" id="K_START" step="any" value="0" onblur="validateInput()" /></td>
- <td id="start_factor">Starting value for the K-factor. Usually 0 but for bowden setups you might want to start higher, e.g. 30</td>
+ <td id="start_factor">Starting value for the K-factor</td>
</tr>
<tr>
<td><label for="K_END">Ending Value for K:</label></td>
<td><input name="K_END" id="K_END" step="any" value="2" onblur="validateInput()" /></td>
- <td id="end_factor">Ending value of the K-factor. Bowden setups may be higher than 100</td>
+ <td id="end_factor">Ending value of the K-factor</td>
</tr>
<tr>
<td><label for="K_STEP">K-factor Stepping:</label></td>
diff --git a/_tools/lin_advance/k-factor.js b/_tools/lin_advance/k-factor.js
index 9c20df2c..44425fe1 100644
--- a/_tools/lin_advance/k-factor.js
+++ b/_tools/lin_advance/k-factor.js
@@ -888,8 +888,8 @@ function toggleVersion() {
$('#K_START').val('0');
$('#K_END').val('2');
$('#K_STEP').val('0.2');
- $('#start_factor').text('Starting value for the K-factor. Usually 0 but for bowden setups you might want to start higher, e.g. 2');
- $('#end_factor').text('Ending value of the K-factor. Bowden setups may be higher than 2');
+ $('#start_factor').text('Starting value for the K-factor');
+ $('#end_factor').text('Ending value of the K-factor');
$('#step_factor').text('Stepping of the K-factor in the test pattern. Needs to be an exact divisor of the K-factor Range (End - Start)');
} else {
$('#K_START').attr('step', '1');