Skip to content

Commit

Permalink
MNT: set dflt and min values of lw inputs to 0
Browse files Browse the repository at this point in the history
Since we're moving to having line width be explicitly in
understandable units of "extra width around the line," 0 will be the
baseline
  • Loading branch information
fedarko committed Jul 17, 2020
1 parent 7f48b83 commit a775092
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions empress/support_files/templates/side-panel.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
</p>
<p>
<label for="sample-line-width">Line Width</label>
<input id="sample-line-width" type="number" value="1" min="1">
<input id="sample-line-width" type="number" value="0" min="0">
</p>
<p>
<button id="sample-update" class="hidden">Update</button>
Expand Down Expand Up @@ -72,7 +72,7 @@
</p>
<p>
<label for="feature-line-width">Line Width</label>
<input id="feature-line-width" type="number" value="1" min="1">
<input id="feature-line-width" type="number" value="0" min="0">
</p>
<p>
<label for="fm-method-chk">Only use tip-level metadata?</label>
Expand Down Expand Up @@ -133,7 +133,7 @@
</p>
<p>
<label for="animate-line-width">Line Width</label>
<input id="animate-line-width" type="number" value="1" min="1">
<input id="animate-line-width" type="number" value="0" min="0">
</p>
<div>
<p>
Expand Down

0 comments on commit a775092

Please sign in to comment.