Skip to content

Commit

Permalink
Remove min value on texture scale options.
Browse files Browse the repository at this point in the history
  • Loading branch information
Wibble199 committed Nov 26, 2024
1 parent 4c64aec commit fdd384d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion module.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "terrain-height-tools",
"title": "Terrain Height Tools",
"description": "Tools for painting grid cells with terrain heights and calculating line of sight with respect to these heights.",
"version": "0.4.0",
"version": "0.4.1",
"compatibility": {
"minimum": "11",
"verified": "11",
Expand Down
4 changes: 2 additions & 2 deletions templates/terrain-types-config.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,9 @@
<div class="form-group-stacked">
<label>{{localize "TERRAINHEIGHTTOOLS.TextureScale"}}</label>
<div class="form-group flexrow">
<input type="number" name="{{idx}}.fillTextureScale.x" value="{{terrainType.fillTextureScale.x}}" min="1" step="1" required placeholder="X">
<input type="number" name="{{idx}}.fillTextureScale.x" value="{{terrainType.fillTextureScale.x}}" step="1" required placeholder="X">
<span class="flex0" style="margin-left: 3px">%</span>
<input type="number" name="{{idx}}.fillTextureScale.y" value="{{terrainType.fillTextureScale.y}}" min="1" step="1" required placeholder="Y" style="margin-left: 8px;">
<input type="number" name="{{idx}}.fillTextureScale.y" value="{{terrainType.fillTextureScale.y}}" step="1" required placeholder="Y" style="margin-left: 8px;">
<span class="flex0" style="margin-left: 3px">%</span>
</div>
</div>
Expand Down

0 comments on commit fdd384d

Please sign in to comment.