Skip to content

Commit

Permalink
added missing commit
Browse files Browse the repository at this point in the history
  • Loading branch information
westlicht committed Nov 11, 2019
1 parent 8c8892a commit 84a5e45
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/apps/sequencer/ui/model/CurveTrackListModel.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ class CurveTrackListModel : public RoutableListModel {
enum Item {
PlayMode,
FillMode,
MuteMode,
SlideTime,
Rotate,
ShapeProbabilityBias,
Expand All @@ -64,6 +65,7 @@ class CurveTrackListModel : public RoutableListModel {
switch (item) {
case PlayMode: return "Play Mode";
case FillMode: return "Fill Mode";
case MuteMode: return "Mute Mode";
case SlideTime: return "Slide Time";
case Rotate: return "Rotate";
case ShapeProbabilityBias: return "Shape P. Bias";
Expand All @@ -85,6 +87,9 @@ class CurveTrackListModel : public RoutableListModel {
case FillMode:
_track->printFillMode(str);
break;
case MuteMode:
_track->printMuteMode(str);
break;
case SlideTime:
_track->printSlideTime(str);
break;
Expand All @@ -110,6 +115,9 @@ class CurveTrackListModel : public RoutableListModel {
case FillMode:
_track->editFillMode(value, shift);
break;
case MuteMode:
_track->editMuteMode(value, shift);
break;
case SlideTime:
_track->editSlideTime(value, shift);
break;
Expand Down

0 comments on commit 84a5e45

Please sign in to comment.