Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deprecated `mix` hotfixes #2

Merged
merged 2 commits into from Nov 17, 2020
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

@@ -57,7 +57,7 @@ end
function DetailsUI:enc(n, delta, sequencer)
-- We're using tap_tempo:is_in_tap_tempo_mode as our general "alt mode"
if self._tap_tempo:is_in_tap_tempo_mode() then
mix:delta("output", delta)
params:delta("output_level", delta)
UIState.screen_dirty = true
else
if n == 2 then
@@ -102,7 +102,7 @@ end

function DetailsUI:redraw(sequencer)
self.enc1_title_label:redraw()
self.enc1_val_label.text = util.round(mix:get_raw("output")*100, 1)
self.enc1_val_label.text = util.round(params:get_raw("output_level") *100,1)
self.enc1_val_label:redraw()

if UIState.show_event_indicator then
ProTip! Use n and p to navigate between commits in a pull request.