monome / norns

norns is many sound instruments.
http://monome.org
GNU General Public License v3.0
633 stars 147 forks source link

Menu gets stuck until Enc1 is turned in both directions #775

Closed markwheeler closed 5 years ago

markwheeler commented 5 years ago

Frequently see this when returning to the menu from a script:

tehn commented 5 years ago

yikes. i'll check out the encoder sensitivity function. thanks for the heads up.

markwheeler commented 5 years ago

More detail for a sure repro:

okyeron commented 5 years ago

FWIW - I see this same behavior as well on my Raspi setup. Must turn enc left and then back right to get params page.

okyeron commented 5 years ago

menu.lua line 135 local c = util.clamp(menu.panel+delta,1,4) menu.panel is set to 4 because the prior screen was params. (so it won't change because it thinks it's already on screen 4)

clicking enc 1 should reset this to menu.panel = 1?

or script load should reset menu.panel to 1?

tehn commented 5 years ago

fixed. b6c4344..3e3b37d

script load auto-defaults EDIT screen to HOME now, and scrolling works as expected.