-
Notifications
You must be signed in to change notification settings - Fork 22
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
added scales #128
added scales #128
Conversation
closes #119 |
@@ -27,6 +28,11 @@ tempoNudge_(0) | |||
this->Insert(wrap) ; | |||
Variable *transpose=new Variable("transpose",VAR_TRANSPOSE,0) ; | |||
this->Insert(transpose) ; | |||
|
|||
// from: https://github.com/xiphonics/picoTracker/blob/master/sources/Application/Model/Project.cpp |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd prefer if we keep this info in the corresponding .h and .cpp, it's not necessary to have it here.
@@ -59,6 +65,13 @@ Project::~Project() { | |||
delete instrumentBank_ ; | |||
} ; | |||
|
|||
// from: https://github.com/xiphonics/picoTracker/blob/master/sources/Application/Model/Project.cpp |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd prefer if we keep this info in the corresponding .h and .cpp, it's not necessary to have it here.
@@ -206,6 +207,12 @@ void PhraseView::updateCursorValue(ViewUpdateDirection direction,int xOffset,int | |||
} | |||
if ((c)&&(*c!=0xFF)) { | |||
int offset=offsets_[col_+xOffset][direction] ; | |||
// from: https://github.com/xiphonics/picoTracker/blob/master/sources/Application/Views/PhraseView.cpp |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd prefer if we keep this info in the corresponding .h and .cpp, it's not necessary to have it here.
@@ -1178,6 +1186,27 @@ void PhraseView::DrawView() { | |||
|
|||
drawMap() ; | |||
drawNotes() ; | |||
|
|||
// Draw Current Scale |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please no commits containing commented-out code
@@ -114,6 +115,17 @@ ProjectView::ProjectView(GUIWindow &w,ViewData *data):FieldView(w,data) { | |||
position._y+=1 ; | |||
UIIntVarField *f2=new UIIntVarField(position,*v,"transpose: %3.2d",-48,48,0x1,0xC) ; | |||
T_SimpleList<UIField>::Insert(f2) ; | |||
|
|||
// from: https://github.com/xiphonics/picoTracker/blob/master/sources/Application/Views/ProjectView.cpp |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd prefer if we keep this info in the corresponding .h and .cpp, it's not necessary to have it here.
Closed in #157 |
Based on xiphonics/picoTracker#39