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

Tiny KBM fixes #1468

Merged
merged 1 commit into from
Jan 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Alec DiAstra <[email protected]>
Rich Elmes <[email protected]>
The Emu (J Riley Hill)
EvilDragon
Nathan Kopp <[email protected]>
Erik-Jan Maalderink <[email protected]>
Kjetil Matheussen <[email protected]>
Dave Palmer <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion src/common/SurgeStorage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1446,7 +1446,7 @@ bool SurgeStorage::remapToKeyboard(const Surge::Storage::KeyboardMapping& k)
if( ! currentScale.isValid() )
{
// We need to set the current scale to a default scale
retuneToScale(Surge::Storage::Scale::evenTemprament12NoteScale());
retuneToScale(Surge::Storage::Scale::evenTemperament12NoteScale());
}
else
{
Expand Down
2 changes: 1 addition & 1 deletion src/common/Tunings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ Surge::Storage::Scale Surge::Storage::parseSCLData(const std::string &d)
return res;
}

Surge::Storage::Scale Surge::Storage::Scale::evenTemprament12NoteScale()
Surge::Storage::Scale Surge::Storage::Scale::evenTemperament12NoteScale()
{
auto data = R"SCL(! even.scl
!
Expand Down
2 changes: 1 addition & 1 deletion src/common/Tunings.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ struct Scale

std::string toHtml(SurgeStorage *storage);

static Scale evenTemprament12NoteScale();
static Scale evenTemperament12NoteScale();
};

struct KeyboardMapping
Expand Down
2 changes: 1 addition & 1 deletion src/common/gui/SurgeGUIEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3524,7 +3524,7 @@ VSTGUI::COptionMenu *SurgeGUIEditor::makeTuningMenu(VSTGUI::CRect &menuRect)
}
};
Surge::UserInteractions::promptFileOpenDialog(this->synth->storage.userDataPath,
".scl",
".kbm",
cb);
}
);
Expand Down