Skip to content

Commit 229ce23

Browse files
committed
feat(ui): small improvements
1 parent 38dd42f commit 229ce23

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ui.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ export function openManagerModal(ui: UIHandlers): void {
170170
<div class="qs-dim">Mode
171171
<div class="qs-radio-group" id="qs-auto-mode-group">
172172
<label class="qs-radio-label"><input type="radio" class="qs-radio" name="qs-auto-mode" value="timer" ${s.autoMode === "timer" ? "checked" : ""} ${s.autoEnabled ? "" : "disabled"}/><span>${getIconMarkup("clock")} Time-based</span></label>
173-
<label class="qs-radio-label"><input type="radio" class="qs-radio" name="qs-auto-mode" value="on-change" ${s.autoMode === "on-change" ? "checked" : ""} ${s.autoEnabled ? "" : "disabled"}/><span>${getIconMarkup("shuffle")} Queue changes</span><span class="qs-icon"><span class="qs-icon-glyph">ⓘ</span><span class="qs-tooltip"><span class="qs-tooltip-emph">Experimental</span>: this mode may create many similar snapshots (for example when queuing a bunch of songs)</span></span></label>
173+
<label class="qs-radio-label"><input type="radio" class="qs-radio" name="qs-auto-mode" value="on-change" ${s.autoMode === "on-change" ? "checked" : ""} ${s.autoEnabled ? "" : "disabled"}/><span>${getIconMarkup("shuffle")} Queue changes</span><span class="qs-icon"><span class="qs-icon-glyph">ⓘ</span><span class="qs-tooltip"><span class="qs-tooltip-emph">Experimental!</span>This mode may create many similar snapshots (for example when queuing a bunch of songs)</span></span></label>
174174
</div>
175175
</div>
176176
<div class="qs-setting" style="margin-top:6px">
@@ -198,7 +198,7 @@ export function openManagerModal(ui: UIHandlers): void {
198198
<div class="qs-setting">
199199
<label>${getIconMarkup("chart-up")} Max automatic snapshots</label>
200200
<input class="qs-input" type="number" id="qs-max-autos" min="1" step="1" value="${s.maxAutosnapshots}" ${s.autoEnabled ? "" : "disabled"} />
201-
<div style="opacity:0.7; font-size:12px">Older snapshots are pruned</div>
201+
<div style="opacity:0.7; font-size:12px">Older snapshots are pruned. Be careful when changing this</div>
202202
</div>
203203
<div class="qs-setting">
204204
<label>${getIconMarkup("queue")} Queue max size</label>

0 commit comments

Comments
 (0)