diff options
| author | Fuwn <[email protected]> | 2023-12-02 06:05:57 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-12-02 06:05:57 -0800 |
| commit | 05785c91d15c16dfa92d47f48c0077b46108ae73 (patch) | |
| tree | b0d152cb97c56da5270fac98355af8dc538c1d66 /src/lib/Tools/Wrapped.svelte | |
| parent | feat(wrapped): adjust highest rated display (diff) | |
| download | due.moe-05785c91d15c16dfa92d47f48c0077b46108ae73.tar.xz due.moe-05785c91d15c16dfa92d47f48c0077b46108ae73.zip | |
feat(wrapped): better options format
Diffstat (limited to 'src/lib/Tools/Wrapped.svelte')
| -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> |