diff options
Diffstat (limited to 'src/lib/Tools')
| -rw-r--r-- | src/lib/Tools/Wrapped.svelte | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/Tools/Wrapped.svelte b/src/lib/Tools/Wrapped.svelte index 99a984fd..f7dc24b6 100644 --- a/src/lib/Tools/Wrapped.svelte +++ b/src/lib/Tools/Wrapped.svelte @@ -417,16 +417,16 @@ <input type="checkbox" bind:checked={includeSpecials} /> Include specials and OVAs<br /> <input type="range" min="1" max="10" bind:value={highestRatedCount} /> Highest rated media count <br /> - <br /> - Manual width override <input type="range" min="1" max="1920" bind:value={width} /> - <a href={'#'} on:click={updateWidth}>Reset</a> - <br /> + Manual width override (<a href={'#'} on:click={updateWidth}>Auto-calculate</a>) <br /> - <input type="checkbox" bind:checked={abbreviateTitles} /> Fit long titles<br /> + <input type="checkbox" bind:checked={abbreviateTitles} /> Fit long titles {#if abbreviateTitles} - Maximum title length <input type="range" min="4" bind:value={maxAbbreviateLength} /><br - /> +   Maximum title length <input + type="range" + min="4" + bind:value={maxAbbreviateLength} + /><br /> {/if} </div> </details> |