Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .Jules/palette.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## 2024-05-22 - [Slider Directionality Confusion]
**Learning:** Sliders where "Intensity" implies "Frequency" but the underlying value controls "Period" (inverse relationship) are confusing. Users expect "More Intensity" = "Faster/More Action".
**Action:** Always label these controls by their direct unit (e.g. "Beats per Cut") or invert the logic so "Intensity" maps to the expected outcome.
4 changes: 2 additions & 2 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ def create_ui() -> gr.Blocks:
maximum=16,
value=4,
step=1,
label='Cut Intensity',
info='Number of beats until next cut.'
label='Pacing (Beats per Cut)',
info='Controls cut frequency. Lower = Fast/Intense (every beat), Higher = Slow/Relaxed (every Nth beat).'
)

direction = gr.Radio(
Expand Down