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

Issue fixing #41

Merged
merged 3 commits into from
Nov 2, 2016
Merged
Changes from 1 commit
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
Next Next commit
Call to extend clip content is fixed
  • Loading branch information
poltow committed Oct 18, 2016
commit 94526c5f42bb8ac706c82269765af59f2c134547
2 changes: 1 addition & 1 deletion StepSequencerComponent.py
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ def _loop_button_value(self, value, sender): #Allows to make selection by hold a
self._delete_notes_in_range(start * self._blocksize * self._quantization, end * self._blocksize * self._quantization)
else:
if self._is_velocity_shifted: # FIX, see if can copy backwards
self._extend_clip_content(start * self._blocksize * self._quantization, end * self._blocksize * self._quantization, self._loop_start, self._loop_end)
self._extend_clip_content(start * self._blocksize * self._quantization, self._loop_end, end * self._blocksize * self._quantization)
self.set_clip_loop(start * self._blocksize * self._quantization, end * self._blocksize * self._quantization)

self._step_sequencer.set_page(self._block) # set sequencer focus
Expand Down