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

added scales #128

Closed
wants to merge 6 commits into from
Closed

added scales #128

wants to merge 6 commits into from

Conversation

clsource
Copy link

@clsource
Copy link
Author

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
Copy link
Owner

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
Copy link
Owner

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
Copy link
Owner

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
Copy link
Owner

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
Copy link
Owner

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.

@djdiskmachine djdiskmachine added the enhancement New feature or request label Oct 1, 2024
@djdiskmachine djdiskmachine linked an issue Oct 1, 2024 that may be closed by this pull request
@djdiskmachine
Copy link
Owner

Closed in #157

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Scale Helper Tool
2 participants